Skip to content

Instantly share code, notes, and snippets.

@enappd
Last active June 1, 2021 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enappd/2f842ed83b7e43c92b2127e49561dee1 to your computer and use it in GitHub Desktop.
Save enappd/2f842ed83b7e43c92b2127e49561dee1 to your computer and use it in GitHub Desktop.
Dummy Order Data JSON
export const environment = {
production: false,
orderData: {
address: {
title: 'Home',
name: 'Maida',
flatNumber: 115,
street: 'Brighton Road',
locality: 'Brighton'
},
grandTotal: 87,
products: [
{
images: ['apple.jpg'],
name: 'Apple',
offer: 10,
salePrice: 2.7,
regularPrice: 3,
units: 10
},
{
images: ['biryani.jpg'],
name: 'Biryani',
offer: 20,
salePrice: 12,
regularPrice: 15,
units: 5
}
],
status: 'Delivered',
delivery_status: 'Unassigned',
createdAt: 'Nov 3, 2020 3:49 PM'
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment