opensteam 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +0 -0
- data/License.txt +4 -0
- data/Manifest.txt +131 -0
- data/Manifest.txt.bak +132 -0
- data/README.txt +92 -0
- data/generators/opensteam/opensteam_generator.rb +295 -0
- data/generators/opensteam/templates/controllers/administration/customers_controller.rb +23 -0
- data/generators/opensteam/templates/controllers/administration/inventories_controller.rb +88 -0
- data/generators/opensteam/templates/controllers/administration/orders_controller.rb +61 -0
- data/generators/opensteam/templates/controllers/administration_controller.rb +80 -0
- data/generators/opensteam/templates/controllers/checkout_controller.rb +142 -0
- data/generators/opensteam/templates/controllers/webshop_controller.rb +68 -0
- data/generators/opensteam/templates/fixtures/inventories.yml +221 -0
- data/generators/opensteam/templates/fixtures/inventories_properties.yml +127 -0
- data/generators/opensteam/templates/fixtures/product_animals.yml +73 -0
- data/generators/opensteam/templates/fixtures/product_dog_foods.yml +7 -0
- data/generators/opensteam/templates/fixtures/properties.yml +42 -0
- data/generators/opensteam/templates/helpers/webshop_helper.rb +29 -0
- data/generators/opensteam/templates/init/opensteam.rb +30 -0
- data/generators/opensteam/templates/migrations/create_addresses.rb +17 -0
- data/generators/opensteam/templates/migrations/create_customers.rb +16 -0
- data/generators/opensteam/templates/migrations/create_dummy_users.rb +16 -0
- data/generators/opensteam/templates/migrations/create_inventories.rb +20 -0
- data/generators/opensteam/templates/migrations/create_inventories_properties.rb +14 -0
- data/generators/opensteam/templates/migrations/create_order_items.rb +16 -0
- data/generators/opensteam/templates/migrations/create_orders.rb +18 -0
- data/generators/opensteam/templates/migrations/create_payment_types.rb +13 -0
- data/generators/opensteam/templates/migrations/create_properties.rb +12 -0
- data/generators/opensteam/templates/migrations/create_sessions.rb +16 -0
- data/generators/opensteam/templates/migrations/create_users.rb +19 -0
- data/generators/opensteam/templates/models/administration_mailer.rb +18 -0
- data/generators/opensteam/templates/models/inventories_property.rb +10 -0
- data/generators/opensteam/templates/models/inventory.rb +57 -0
- data/generators/opensteam/templates/public/images/bullet_arrow_down.png +0 -0
- data/generators/opensteam/templates/public/images/bullet_arrow_up.png +0 -0
- data/generators/opensteam/templates/public/images/cancel.png +0 -0
- data/generators/opensteam/templates/public/images/folder_database.png +0 -0
- data/generators/opensteam/templates/public/images/indicator.gif +0 -0
- data/generators/opensteam/templates/public/images/indicator_big.gif +0 -0
- data/generators/opensteam/templates/public/images/minus.png +0 -0
- data/generators/opensteam/templates/public/images/opensteam_logo_small.jpg +0 -0
- data/generators/opensteam/templates/public/images/opensteam_logo_web.jpg +0 -0
- data/generators/opensteam/templates/public/images/palette.png +0 -0
- data/generators/opensteam/templates/public/images/plus.png +0 -0
- data/generators/opensteam/templates/public/images/rails.png +0 -0
- data/generators/opensteam/templates/public/index.html +297 -0
- data/generators/opensteam/templates/public/stylesheets/webshop.css +262 -0
- data/generators/opensteam/templates/tasks/opensteam.rake +114 -0
- data/generators/opensteam/templates/views/administration/_address.html.erb +4 -0
- data/generators/opensteam/templates/views/administration/_nav.html.erb +11 -0
- data/generators/opensteam/templates/views/administration/_update_tree.html.erb +18 -0
- data/generators/opensteam/templates/views/administration/admin_info.html.erb +12 -0
- data/generators/opensteam/templates/views/administration/customers.html.erb +44 -0
- data/generators/opensteam/templates/views/administration/customers/index.html.erb +27 -0
- data/generators/opensteam/templates/views/administration/customers/show.html.erb +27 -0
- data/generators/opensteam/templates/views/administration/index.html.erb +9 -0
- data/generators/opensteam/templates/views/administration/inventories/edit.html.erb +48 -0
- data/generators/opensteam/templates/views/administration/inventories/index.html.erb +27 -0
- data/generators/opensteam/templates/views/administration/inventories/new.html.erb +41 -0
- data/generators/opensteam/templates/views/administration/inventories/show.html.erb +45 -0
- data/generators/opensteam/templates/views/administration/login.html.erb +16 -0
- data/generators/opensteam/templates/views/administration/order.html.erb +22 -0
- data/generators/opensteam/templates/views/administration/orders.html.erb +32 -0
- data/generators/opensteam/templates/views/administration/orders/_order_item.html.erb +22 -0
- data/generators/opensteam/templates/views/administration/orders/index.html.erb +32 -0
- data/generators/opensteam/templates/views/administration/orders/show.html.erb +25 -0
- data/generators/opensteam/templates/views/administration/products.html.erb +7 -0
- data/generators/opensteam/templates/views/administration/properties.html.erb +7 -0
- data/generators/opensteam/templates/views/administration/show_order_item.html.erb +5 -0
- data/generators/opensteam/templates/views/administration/signup.html.erb +65 -0
- data/generators/opensteam/templates/views/administration/tree.html.erb +15 -0
- data/generators/opensteam/templates/views/administration/update_products.html.erb +5 -0
- data/generators/opensteam/templates/views/administration/update_properties.html.erb +5 -0
- data/generators/opensteam/templates/views/administration/update_tree.rjs +3 -0
- data/generators/opensteam/templates/views/administration_mailer/order_admin.erb +27 -0
- data/generators/opensteam/templates/views/administration_mailer/order_customer.erb +24 -0
- data/generators/opensteam/templates/views/checkout/intro.html.erb +5 -0
- data/generators/opensteam/templates/views/checkout/outro.html.erb +6 -0
- data/generators/opensteam/templates/views/checkout/payment.html.erb +8 -0
- data/generators/opensteam/templates/views/checkout/shipping.html.erb +39 -0
- data/generators/opensteam/templates/views/checkout/show_cart.html.erb +13 -0
- data/generators/opensteam/templates/views/checkout/update_cart_content.rjs +2 -0
- data/generators/opensteam/templates/views/common/_cart.html.erb +11 -0
- data/generators/opensteam/templates/views/common/_cart_content.html.erb +19 -0
- data/generators/opensteam/templates/views/common/_header.html.erb +15 -0
- data/generators/opensteam/templates/views/layouts/administration.html.erb +29 -0
- data/generators/opensteam/templates/views/layouts/webshop.html.erb +36 -0
- data/generators/opensteam/templates/views/webshop/_cart.html.erb +11 -0
- data/generators/opensteam/templates/views/webshop/_cart_content.html.erb +23 -0
- data/generators/opensteam/templates/views/webshop/_header.html.erb +15 -0
- data/generators/opensteam/templates/views/webshop/_inventory_content.html.erb +12 -0
- data/generators/opensteam/templates/views/webshop/add_inventory_to_cart.rjs +2 -0
- data/generators/opensteam/templates/views/webshop/add_to_cart_with_parameters.rjs +2 -0
- data/generators/opensteam/templates/views/webshop/del_item.rjs +1 -0
- data/generators/opensteam/templates/views/webshop/index.html.erb +12 -0
- data/generators/opensteam/templates/views/webshop/inventory.rjs +2 -0
- data/generators/opensteam/templates/views/webshop/show.html.erb +40 -0
- data/generators/opensteam_product/opensteam_product_generator.rb +115 -0
- data/generators/opensteam_product/templates/controllers/product_controller.rb +104 -0
- data/generators/opensteam_product/templates/migration.rb +16 -0
- data/generators/opensteam_product/templates/models/product.rb +3 -0
- data/generators/opensteam_product/templates/views/_attr_product.html.erb +8 -0
- data/generators/opensteam_product/templates/views/_attr_property.html.erb +9 -0
- data/generators/opensteam_product/templates/views/_details.html.erb +29 -0
- data/generators/opensteam_product/templates/views/administration/_attributes.html.erb +21 -0
- data/generators/opensteam_product/templates/views/administration/_get_products.html.erb +8 -0
- data/generators/opensteam_product/templates/views/administration/_inventories.html.erb +27 -0
- data/generators/opensteam_product/templates/views/administration/edit.html.erb +13 -0
- data/generators/opensteam_product/templates/views/administration/index.html.erb +36 -0
- data/generators/opensteam_product/templates/views/administration/new.html.erb +16 -0
- data/generators/opensteam_product/templates/views/administration/show.html.erb +15 -0
- data/generators/opensteam_property/opensteam_property_generator.rb +126 -0
- data/generators/opensteam_property/templates/controllers/property_controller.rb +86 -0
- data/generators/opensteam_property/templates/migration.rb +14 -0
- data/generators/opensteam_property/templates/models/property.rb +3 -0
- data/generators/opensteam_property/templates/views/administration/edit.html.erb +19 -0
- data/generators/opensteam_property/templates/views/administration/index.html.erb +24 -0
- data/generators/opensteam_property/templates/views/administration/new.html.erb +18 -0
- data/generators/opensteam_property/templates/views/administration/show.html.erb +10 -0
- data/lib/opensteam.rb +49 -0
- data/lib/opensteam/base.rb +121 -0
- data/lib/opensteam/checkout.rb +89 -0
- data/lib/opensteam/config.rb +31 -0
- data/lib/opensteam/finder.rb +145 -0
- data/lib/opensteam/inventory_base.rb +79 -0
- data/lib/opensteam/order_base.rb +58 -0
- data/lib/opensteam/product_base.rb +222 -0
- data/lib/opensteam/property_base.rb +63 -0
- data/lib/opensteam/shopping_cart.rb +343 -0
- data/lib/opensteam/user_base.rb +165 -0
- data/lib/opensteam/version.rb +9 -0
- data/test/test_helper.rb +2 -0
- data/test/test_opensteam.rb +11 -0
- metadata +189 -0
@@ -0,0 +1,221 @@
|
|
1
|
+
---
|
2
|
+
inventory_00042:
|
3
|
+
updated_at: 2008-05-23 12:57:43 +02:00
|
4
|
+
price: 1.11
|
5
|
+
product_type: DogFood
|
6
|
+
product_id: 2
|
7
|
+
id: 42
|
8
|
+
version:
|
9
|
+
description:
|
10
|
+
storage: 2
|
11
|
+
created_at: 2008-05-23 12:44:44 +02:00
|
12
|
+
back_ordered: 0
|
13
|
+
active: 1
|
14
|
+
|
15
|
+
inventory_00043:
|
16
|
+
updated_at: 2008-05-23 12:57:43 +02:00
|
17
|
+
price: 2.59
|
18
|
+
product_type: DogFood
|
19
|
+
product_id: 2
|
20
|
+
id: 43
|
21
|
+
version:
|
22
|
+
description:
|
23
|
+
storage: 4
|
24
|
+
created_at: 2008-05-23 12:44:44 +02:00
|
25
|
+
back_ordered: 0
|
26
|
+
active: 1
|
27
|
+
|
28
|
+
inventory_00033:
|
29
|
+
updated_at: 2008-05-23 12:59:58 +02:00
|
30
|
+
price: 23
|
31
|
+
product_type: Animal
|
32
|
+
product_id: 89
|
33
|
+
id: 33
|
34
|
+
version:
|
35
|
+
description:
|
36
|
+
storage: 1
|
37
|
+
created_at: 2008-05-23 12:39:38 +02:00
|
38
|
+
back_ordered: 0
|
39
|
+
active: 1
|
40
|
+
|
41
|
+
inventory_00044:
|
42
|
+
updated_at: 2008-05-23 12:58:37 +02:00
|
43
|
+
price: 42
|
44
|
+
product_type: DogFood
|
45
|
+
product_id: 2
|
46
|
+
id: 44
|
47
|
+
version:
|
48
|
+
description: ""
|
49
|
+
storage: 6
|
50
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
51
|
+
back_ordered: 0
|
52
|
+
active: 0
|
53
|
+
|
54
|
+
inventory_00045:
|
55
|
+
updated_at: 2008-05-23 12:57:43 +02:00
|
56
|
+
price: 23
|
57
|
+
product_type: DogFood
|
58
|
+
product_id: 2
|
59
|
+
id: 45
|
60
|
+
version:
|
61
|
+
description:
|
62
|
+
storage: 8
|
63
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
64
|
+
back_ordered: 0
|
65
|
+
active: 1
|
66
|
+
|
67
|
+
inventory_00034:
|
68
|
+
updated_at: 2008-05-23 13:00:45 +02:00
|
69
|
+
price: 13
|
70
|
+
product_type: Animal
|
71
|
+
product_id: 90
|
72
|
+
id: 34
|
73
|
+
version:
|
74
|
+
description: ""
|
75
|
+
storage: 0
|
76
|
+
created_at: 2008-05-23 12:39:38 +02:00
|
77
|
+
back_ordered: 0
|
78
|
+
active: 1
|
79
|
+
|
80
|
+
inventory_00035:
|
81
|
+
updated_at: 2008-05-23 12:41:50 +02:00
|
82
|
+
price: 654
|
83
|
+
product_type: Animal
|
84
|
+
product_id: 91
|
85
|
+
id: 35
|
86
|
+
version:
|
87
|
+
description:
|
88
|
+
storage: 3
|
89
|
+
created_at: 2008-05-23 12:39:38 +02:00
|
90
|
+
back_ordered: 0
|
91
|
+
active: 1
|
92
|
+
|
93
|
+
inventory_00046:
|
94
|
+
updated_at: 2008-05-23 12:57:44 +02:00
|
95
|
+
price: 123
|
96
|
+
product_type: DogFood
|
97
|
+
product_id: 2
|
98
|
+
id: 46
|
99
|
+
version:
|
100
|
+
description:
|
101
|
+
storage: 10
|
102
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
103
|
+
back_ordered: 0
|
104
|
+
active: 1
|
105
|
+
|
106
|
+
inventory_00047:
|
107
|
+
updated_at: 2008-05-23 12:59:10 +02:00
|
108
|
+
price: 600
|
109
|
+
product_type: DogFood
|
110
|
+
product_id: 2
|
111
|
+
id: 47
|
112
|
+
version:
|
113
|
+
description: ""
|
114
|
+
storage: 0
|
115
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
116
|
+
back_ordered: 0
|
117
|
+
active: 1
|
118
|
+
|
119
|
+
inventory_00036:
|
120
|
+
updated_at: 2008-05-23 13:02:07 +02:00
|
121
|
+
price: 599
|
122
|
+
product_type: Animal
|
123
|
+
product_id: 92
|
124
|
+
id: 36
|
125
|
+
version:
|
126
|
+
description: ""
|
127
|
+
storage: 0
|
128
|
+
created_at: 2008-05-23 12:39:38 +02:00
|
129
|
+
back_ordered: 1
|
130
|
+
active: 1
|
131
|
+
|
132
|
+
inventory_00037:
|
133
|
+
updated_at: 2008-05-23 12:41:50 +02:00
|
134
|
+
price: 5.66
|
135
|
+
product_type: Animal
|
136
|
+
product_id: 93
|
137
|
+
id: 37
|
138
|
+
version:
|
139
|
+
description:
|
140
|
+
storage: 5
|
141
|
+
created_at: 2008-05-23 12:39:38 +02:00
|
142
|
+
back_ordered: 0
|
143
|
+
active: 1
|
144
|
+
|
145
|
+
inventory_00048:
|
146
|
+
updated_at: 2008-05-23 12:57:44 +02:00
|
147
|
+
price: 40.59
|
148
|
+
product_type: DogFood
|
149
|
+
product_id: 2
|
150
|
+
id: 48
|
151
|
+
version:
|
152
|
+
description:
|
153
|
+
storage: 14
|
154
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
155
|
+
back_ordered: 0
|
156
|
+
active: 1
|
157
|
+
|
158
|
+
inventory_00049:
|
159
|
+
updated_at: 2008-05-23 12:57:44 +02:00
|
160
|
+
price: 1.99
|
161
|
+
product_type: DogFood
|
162
|
+
product_id: 2
|
163
|
+
id: 49
|
164
|
+
version:
|
165
|
+
description:
|
166
|
+
storage: 16
|
167
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
168
|
+
back_ordered: 0
|
169
|
+
active: 1
|
170
|
+
|
171
|
+
inventory_00038:
|
172
|
+
updated_at: 2008-05-23 12:41:50 +02:00
|
173
|
+
price: 2.90
|
174
|
+
product_type: Animal
|
175
|
+
product_id: 94
|
176
|
+
id: 38
|
177
|
+
version:
|
178
|
+
description:
|
179
|
+
storage: 6
|
180
|
+
created_at: 2008-05-23 12:39:38 +02:00
|
181
|
+
back_ordered: 0
|
182
|
+
active: 1
|
183
|
+
|
184
|
+
inventory_00039:
|
185
|
+
updated_at: 2008-05-23 13:01:16 +02:00
|
186
|
+
price: 100
|
187
|
+
product_type: Animal
|
188
|
+
product_id: 95
|
189
|
+
id: 39
|
190
|
+
version:
|
191
|
+
description: Special Offer!
|
192
|
+
storage: 7
|
193
|
+
created_at: 2008-05-23 12:39:38 +02:00
|
194
|
+
back_ordered: 0
|
195
|
+
active: 1
|
196
|
+
|
197
|
+
inventory_00040:
|
198
|
+
updated_at: 2008-05-23 13:03:29 +02:00
|
199
|
+
price: 12
|
200
|
+
product_type: Animal
|
201
|
+
product_id: 96
|
202
|
+
id: 40
|
203
|
+
version:
|
204
|
+
description: ""
|
205
|
+
storage: 8
|
206
|
+
created_at: 2008-05-23 12:39:39 +02:00
|
207
|
+
back_ordered: 1
|
208
|
+
active: 0
|
209
|
+
|
210
|
+
inventory_00041:
|
211
|
+
updated_at: 2008-05-23 12:58:18 +02:00
|
212
|
+
price: 457
|
213
|
+
product_type: DogFood
|
214
|
+
product_id: 2
|
215
|
+
id: 41
|
216
|
+
version:
|
217
|
+
description: Currently Out Of Stock
|
218
|
+
storage: 0
|
219
|
+
created_at: 2008-05-23 12:44:44 +02:00
|
220
|
+
back_ordered: 1
|
221
|
+
active: 1
|
@@ -0,0 +1,127 @@
|
|
1
|
+
---
|
2
|
+
inventories_property_00033:
|
3
|
+
updated_at: 2008-05-23 12:44:44 +02:00
|
4
|
+
inventory_id: 42
|
5
|
+
property_type:
|
6
|
+
property_id: 7
|
7
|
+
id: 33
|
8
|
+
created_at: 2008-05-23 12:44:44 +02:00
|
9
|
+
inventories_property_00044:
|
10
|
+
updated_at: 2008-05-23 12:44:45 +02:00
|
11
|
+
inventory_id: 48
|
12
|
+
property_type:
|
13
|
+
property_id: 5
|
14
|
+
id: 44
|
15
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
16
|
+
inventories_property_00045:
|
17
|
+
updated_at: 2008-05-23 12:44:45 +02:00
|
18
|
+
inventory_id: 48
|
19
|
+
property_type:
|
20
|
+
property_id: 7
|
21
|
+
id: 45
|
22
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
23
|
+
inventories_property_00034:
|
24
|
+
updated_at: 2008-05-23 12:44:44 +02:00
|
25
|
+
inventory_id: 43
|
26
|
+
property_type:
|
27
|
+
property_id: 3
|
28
|
+
id: 34
|
29
|
+
created_at: 2008-05-23 12:44:44 +02:00
|
30
|
+
inventories_property_00035:
|
31
|
+
updated_at: 2008-05-23 12:44:44 +02:00
|
32
|
+
inventory_id: 43
|
33
|
+
property_type:
|
34
|
+
property_id: 8
|
35
|
+
id: 35
|
36
|
+
created_at: 2008-05-23 12:44:44 +02:00
|
37
|
+
inventories_property_00046:
|
38
|
+
updated_at: 2008-05-23 12:44:45 +02:00
|
39
|
+
inventory_id: 49
|
40
|
+
property_type:
|
41
|
+
property_id: 5
|
42
|
+
id: 46
|
43
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
44
|
+
inventories_property_00047:
|
45
|
+
updated_at: 2008-05-23 12:44:45 +02:00
|
46
|
+
inventory_id: 49
|
47
|
+
property_type:
|
48
|
+
property_id: 8
|
49
|
+
id: 47
|
50
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
51
|
+
inventories_property_00036:
|
52
|
+
updated_at: 2008-05-23 12:44:45 +02:00
|
53
|
+
inventory_id: 44
|
54
|
+
property_type:
|
55
|
+
property_id: 4
|
56
|
+
id: 36
|
57
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
58
|
+
inventories_property_00037:
|
59
|
+
updated_at: 2008-05-23 12:44:45 +02:00
|
60
|
+
inventory_id: 44
|
61
|
+
property_type:
|
62
|
+
property_id: 6
|
63
|
+
id: 37
|
64
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
65
|
+
inventories_property_00038:
|
66
|
+
updated_at: 2008-05-23 12:44:45 +02:00
|
67
|
+
inventory_id: 45
|
68
|
+
property_type:
|
69
|
+
property_id: 4
|
70
|
+
id: 38
|
71
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
72
|
+
inventories_property_00039:
|
73
|
+
updated_at: 2008-05-23 12:44:45 +02:00
|
74
|
+
inventory_id: 45
|
75
|
+
property_type:
|
76
|
+
property_id: 7
|
77
|
+
id: 39
|
78
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
79
|
+
inventories_property_00040:
|
80
|
+
updated_at: 2008-05-23 12:44:45 +02:00
|
81
|
+
inventory_id: 46
|
82
|
+
property_type:
|
83
|
+
property_id: 4
|
84
|
+
id: 40
|
85
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
86
|
+
inventories_property_00041:
|
87
|
+
updated_at: 2008-05-23 12:44:45 +02:00
|
88
|
+
inventory_id: 46
|
89
|
+
property_type:
|
90
|
+
property_id: 8
|
91
|
+
id: 41
|
92
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
93
|
+
inventories_property_00030:
|
94
|
+
updated_at: 2008-05-23 12:44:44 +02:00
|
95
|
+
inventory_id: 41
|
96
|
+
property_type:
|
97
|
+
property_id: 3
|
98
|
+
id: 30
|
99
|
+
created_at: 2008-05-23 12:44:44 +02:00
|
100
|
+
inventories_property_00031:
|
101
|
+
updated_at: 2008-05-23 12:44:44 +02:00
|
102
|
+
inventory_id: 41
|
103
|
+
property_type:
|
104
|
+
property_id: 6
|
105
|
+
id: 31
|
106
|
+
created_at: 2008-05-23 12:44:44 +02:00
|
107
|
+
inventories_property_00042:
|
108
|
+
updated_at: 2008-05-23 12:44:45 +02:00
|
109
|
+
inventory_id: 47
|
110
|
+
property_type:
|
111
|
+
property_id: 5
|
112
|
+
id: 42
|
113
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
114
|
+
inventories_property_00043:
|
115
|
+
updated_at: 2008-05-23 12:44:45 +02:00
|
116
|
+
inventory_id: 47
|
117
|
+
property_type:
|
118
|
+
property_id: 6
|
119
|
+
id: 43
|
120
|
+
created_at: 2008-05-23 12:44:45 +02:00
|
121
|
+
inventories_property_00032:
|
122
|
+
updated_at: 2008-05-23 12:44:44 +02:00
|
123
|
+
inventory_id: 42
|
124
|
+
property_type:
|
125
|
+
property_id: 3
|
126
|
+
id: 32
|
127
|
+
created_at: 2008-05-23 12:44:44 +02:00
|
@@ -0,0 +1,73 @@
|
|
1
|
+
---
|
2
|
+
product_animal_00092:
|
3
|
+
name: Spotless Koi
|
4
|
+
updated_at:
|
5
|
+
art: Koi
|
6
|
+
type: Fish
|
7
|
+
id: 92
|
8
|
+
description: fresh water fish from japan
|
9
|
+
picture:
|
10
|
+
created_at:
|
11
|
+
product_animal_00093:
|
12
|
+
name: Tiger Shark
|
13
|
+
updated_at:
|
14
|
+
art: Tiger Shark
|
15
|
+
type: Fish
|
16
|
+
id: 93
|
17
|
+
description: salt water fish from australia
|
18
|
+
picture:
|
19
|
+
created_at:
|
20
|
+
product_animal_00094:
|
21
|
+
name: Spotted Koi
|
22
|
+
updated_at:
|
23
|
+
art: Koi
|
24
|
+
type: Fish
|
25
|
+
id: 94
|
26
|
+
description: fresh water fish from japan
|
27
|
+
picture:
|
28
|
+
created_at:
|
29
|
+
product_animal_00095:
|
30
|
+
name: Adult Female Golden Retriever
|
31
|
+
updated_at:
|
32
|
+
art: Golden Retriever
|
33
|
+
type: Dog
|
34
|
+
id: 95
|
35
|
+
description: Family Dog
|
36
|
+
picture:
|
37
|
+
created_at:
|
38
|
+
product_animal_00096:
|
39
|
+
name: Venomless Rattlesnake
|
40
|
+
updated_at:
|
41
|
+
art: Rattlesnake
|
42
|
+
type: Reptile
|
43
|
+
id: 96
|
44
|
+
description: ...
|
45
|
+
picture:
|
46
|
+
created_at:
|
47
|
+
product_animal_00089:
|
48
|
+
name: Rattleless Rattlesnake
|
49
|
+
updated_at:
|
50
|
+
art: Rattlesnake
|
51
|
+
type: Reptile
|
52
|
+
id: 89
|
53
|
+
description: ...
|
54
|
+
picture:
|
55
|
+
created_at:
|
56
|
+
product_animal_00090:
|
57
|
+
name: Adult Female Labrador Retriever
|
58
|
+
updated_at:
|
59
|
+
art: Labrador Retriever
|
60
|
+
type: Dog
|
61
|
+
id: 90
|
62
|
+
description: Great Hunting Dog
|
63
|
+
picture:
|
64
|
+
created_at:
|
65
|
+
product_animal_00091:
|
66
|
+
name: Adult Male Labrador Retriever
|
67
|
+
updated_at:
|
68
|
+
art: Labrador Retriever
|
69
|
+
type: Dog
|
70
|
+
id: 91
|
71
|
+
description: Great Hunting Dog
|
72
|
+
picture:
|
73
|
+
created_at:
|
@@ -0,0 +1,42 @@
|
|
1
|
+
---
|
2
|
+
property_00003:
|
3
|
+
name: 1kg
|
4
|
+
updated_at:
|
5
|
+
type: Weight
|
6
|
+
id: 3
|
7
|
+
created_at:
|
8
|
+
|
9
|
+
property_00004:
|
10
|
+
name: 2kg
|
11
|
+
updated_at:
|
12
|
+
type: Weight
|
13
|
+
id: 4
|
14
|
+
created_at:
|
15
|
+
|
16
|
+
property_00005:
|
17
|
+
name: 5kg
|
18
|
+
updated_at:
|
19
|
+
type: Weight
|
20
|
+
id: 5
|
21
|
+
created_at:
|
22
|
+
|
23
|
+
property_00006:
|
24
|
+
name: for puppies
|
25
|
+
updated_at:
|
26
|
+
type: DogKind
|
27
|
+
id: 6
|
28
|
+
created_at:
|
29
|
+
|
30
|
+
property_00007:
|
31
|
+
name: for old dogs
|
32
|
+
updated_at:
|
33
|
+
type: DogKind
|
34
|
+
id: 7
|
35
|
+
created_at:
|
36
|
+
|
37
|
+
property_00008:
|
38
|
+
name: for regular dogs
|
39
|
+
updated_at:
|
40
|
+
type: DogKind
|
41
|
+
id: 8
|
42
|
+
created_at:
|