office_clerk 0.0.1 → 0.1
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +14 -9
- data/README.md +1 -0
- data/app/assets/images/shop/ikkuna.jpg +0 -0
- data/app/assets/images/shop/violetti-lev.jpg +0 -0
- data/app/assets/javascripts/admin.js +2 -2
- data/app/assets/javascripts/shop.js +2 -1
- data/app/assets/stylesheets/shop-receipt.css.scss +1 -1
- data/app/assets/stylesheets/shop.css.scss +52 -31
- data/app/controllers/application_controller.rb +11 -5
- data/app/controllers/baskets_controller.rb +3 -27
- data/app/controllers/categories_controller.rb +2 -1
- data/app/controllers/clerks_controller.rb +3 -8
- data/app/controllers/manage_controller.rb +7 -0
- data/app/controllers/orders_controller.rb +16 -2
- data/app/controllers/products_controller.rb +20 -40
- data/app/controllers/purchases_controller.rb +2 -1
- data/app/controllers/sessions_controller.rb +15 -22
- data/app/helpers/admin_helper.rb +6 -8
- data/app/helpers/orders_helper.rb +6 -0
- data/app/models/basket.rb +1 -2
- data/app/models/category.rb +2 -0
- data/app/models/product.rb +43 -17
- data/app/models/purchase.rb +7 -6
- data/app/views/baskets/edit.html.haml +6 -8
- data/app/views/baskets/show.html.haml +1 -1
- data/app/views/clerks/edit.html.haml +1 -1
- data/app/views/layouts/_admin_menu.html.haml +2 -0
- data/app/views/layouts/admin.html.haml +9 -4
- data/app/views/layouts/shop.html.haml +8 -5
- data/app/views/manage/all.haml +3 -0
- data/app/views/orders/ship.haml +91 -0
- data/app/views/orders/show.html.haml +12 -4
- data/app/views/products/_head.haml +12 -0
- data/app/views/products/_line.html.haml +4 -8
- data/app/views/products/_online.html.haml +1 -1
- data/app/views/products/edit.html.haml +1 -7
- data/app/views/products/index.html.haml +4 -1
- data/app/views/products/show.html.haml +4 -18
- data/app/views/purchases/show.html.haml +3 -3
- data/app/views/sessions/{new.html.haml → sign_in.haml} +1 -1
- data/app/views/sessions/{new_clerk.html.haml → sign_up.haml} +2 -2
- data/app/views/shop/checkout.haml +3 -3
- data/app/views/shop/liikkeemme.html.haml +59 -0
- data/app/views/shop/order.haml +20 -15
- data/app/views/shop/product_list.html.haml +16 -13
- data/app/views/shop/tilaushistoria.html.haml +221 -0
- data/app/views/shop/toimitusehdot.html.haml +99 -0
- data/config/locales/config.yml +2 -1
- data/config/locales/en.yml +4 -5
- data/config/locales/fi.yml +13 -6
- data/config/routes.rb +11 -12
- data/lib/office_clerk/shipping_method.rb +1 -1
- data/office_clerk.gemspec +1 -1
- data/spec/controllers/products_controller_spec.rb +3 -3
- data/spec/controllers/sessions_controller_spec.rb +11 -3
- data/spec/factories/orders.rb +7 -1
- data/spec/factories/products.rb +16 -0
- data/spec/factories/purchases.rb +8 -4
- data/spec/features/baskets/buttons_spec.rb +1 -2
- data/spec/features/baskets/index_spec.rb +10 -4
- data/spec/features/clerks_spec.rb +22 -6
- data/spec/features/orders_spec.rb +18 -0
- data/spec/features/products/edit_spec.rb +32 -0
- data/spec/features/products/header_spec.rb +48 -0
- data/spec/features/products/index_spec.rb +4 -18
- data/spec/features/purchases_spec.rb +19 -0
- data/spec/features/sessions_spec.rb +58 -0
- data/spec/features/shop_spec.rb +63 -0
- data/spec/features/suppliers_spec.rb +2 -0
- data/spec/models/product_spec.rb +54 -8
- data/spec/models/purchase_spec.rb +20 -1
- data/spec/models/shipping_spec.rb +25 -0
- metadata +22 -9
- data/app/views/products/_name.html.haml +0 -4
- data/spec/features/products/new_spec.rb +0 -20
- data/spec/features/shops_spec.rb +0 -18
@@ -29,22 +29,25 @@
|
|
29
29
|
= image_tag group.main_picture.url(:product)
|
30
30
|
%h3= group.name
|
31
31
|
.row.list
|
32
|
-
-@products.in_groups_of(
|
32
|
+
-@products.in_groups_of(3).each do |three|
|
33
33
|
.row.product-listing
|
34
34
|
-three.each do |product|
|
35
|
-
.col-md-
|
35
|
+
.col-md-4
|
36
36
|
-next unless product
|
37
37
|
.product-container
|
38
|
-
.
|
39
|
-
=
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
.
|
47
|
-
= product.
|
48
|
-
|
38
|
+
%h4.product-name
|
39
|
+
= product.name
|
40
|
+
.row
|
41
|
+
.col-md-4
|
42
|
+
.square-image
|
43
|
+
=link_to shop_product_path(:link => product.link ) do
|
44
|
+
=image_tag product.main_picture.url
|
45
|
+
.col-md-8
|
46
|
+
.product-fact
|
47
|
+
=link_to shop_product_path( :link => product.link ) , :class => :info do
|
48
|
+
%p Luonnollinen shampoo rasvoittuville hiuksille. Valmistuksessa on käytetty bretagnelaista Fucus vesiculosus ...
|
49
|
+
.price.selling
|
50
|
+
= product.price
|
51
|
+
€
|
49
52
|
|
50
53
|
|
@@ -0,0 +1,221 @@
|
|
1
|
+
.row
|
2
|
+
%ol.breadcrumb
|
3
|
+
%li
|
4
|
+
%a{ :href => "/"}= t(:home)
|
5
|
+
%li
|
6
|
+
= t(:history)
|
7
|
+
|
8
|
+
.row
|
9
|
+
|
10
|
+
.col-md-3
|
11
|
+
.group-wrapper.side.checkout
|
12
|
+
%img{:src => "/assets/shop/basket.jpg"}/
|
13
|
+
%h5 Tilaushistoria
|
14
|
+
|
15
|
+
.col-md-9
|
16
|
+
.row
|
17
|
+
%br
|
18
|
+
%h4.highlight Uusin tilauksesi
|
19
|
+
%b Tilaus
|
20
|
+
No 123123123
|
21
|
+
vastaanotettu
|
22
|
+
23.11.2014 klo 16
|
23
|
+
%br
|
24
|
+
%div
|
25
|
+
%table.table.table-condensed
|
26
|
+
%thead
|
27
|
+
%tr
|
28
|
+
%th tuote
|
29
|
+
%th
|
30
|
+
%th hinta
|
31
|
+
%th määrä
|
32
|
+
%th yhteishinta
|
33
|
+
%tbody
|
34
|
+
%tr
|
35
|
+
%td.picture.text-center
|
36
|
+
%img{:alt => "Earl grey", :src => "/images/5771/thumb/earl_grey.gif?1411309551"}/
|
37
|
+
%td.name
|
38
|
+
%a{:href => "/prod/musta-tee-ceylon"}
|
39
|
+
Musta tee Ceylon
|
40
|
+
%td 4,30 €
|
41
|
+
%td 1
|
42
|
+
%td 4,30 €
|
43
|
+
%tr
|
44
|
+
%td.picture.text-center
|
45
|
+
%img{:alt => "Farfalla shampoo granaattiomena", :src => "/images/349/thumb/farfalla_shampoo_granaattiomena.jpg?1408201748"}/
|
46
|
+
%td.name
|
47
|
+
%a{:href => "/prod/paeivittaein-granaattiomena-shampoo"}
|
48
|
+
Päivittäin – Granaattiomenashampoo
|
49
|
+
%td 13,20 €
|
50
|
+
%td 1
|
51
|
+
%td 13,20 €
|
52
|
+
|
53
|
+
%tr
|
54
|
+
%th
|
55
|
+
%th Tuotteet yhteensä
|
56
|
+
%th
|
57
|
+
%th
|
58
|
+
%th 111,22 €
|
59
|
+
%tr
|
60
|
+
%td
|
61
|
+
%td Toimituskulut
|
62
|
+
%td
|
63
|
+
%td
|
64
|
+
%td 8,25 €
|
65
|
+
%tr
|
66
|
+
%th
|
67
|
+
%th Tilaus yhteensä
|
68
|
+
%th
|
69
|
+
%th
|
70
|
+
%th 111,22 €
|
71
|
+
|
72
|
+
.row
|
73
|
+
.col-md-6
|
74
|
+
%button.btn.btn-primary.btn-xs#fill_address{:type => "button"} Kopioi uudeksi tilaukseksi
|
75
|
+
.col-md-6.text-right
|
76
|
+
Valittu toimitustapa: Postipaketti
|
77
|
+
-# = t(@order.shipment_type)
|
78
|
+
|
79
|
+
.row
|
80
|
+
%hr
|
81
|
+
.col-md-3
|
82
|
+
%h4.highlight Aiemmat tilauksesi
|
83
|
+
|
84
|
+
.row
|
85
|
+
%br
|
86
|
+
.col-md-3
|
87
|
+
%b Tilaus
|
88
|
+
No 123123123
|
89
|
+
vastaanotettu
|
90
|
+
23.11.2014 klo 16
|
91
|
+
|
92
|
+
|
93
|
+
.col-md-9
|
94
|
+
%div
|
95
|
+
%table.table.table-condensed
|
96
|
+
%thead
|
97
|
+
%tr
|
98
|
+
%th tuote
|
99
|
+
%th
|
100
|
+
%th hinta
|
101
|
+
%th määrä
|
102
|
+
%th yhteishinta
|
103
|
+
%tbody
|
104
|
+
%tr
|
105
|
+
%td.picture.text-center
|
106
|
+
%img{:alt => "Earl grey", :src => "/images/5771/thumb/earl_grey.gif?1411309551"}/
|
107
|
+
%td.name
|
108
|
+
%a{:href => "/prod/musta-tee-ceylon"}
|
109
|
+
Musta tee Ceylon
|
110
|
+
%td 4,30 €
|
111
|
+
%td 1
|
112
|
+
%td 4,30 €
|
113
|
+
%tr
|
114
|
+
%td.picture.text-center
|
115
|
+
%img{:alt => "Farfalla shampoo granaattiomena", :src => "/images/349/thumb/farfalla_shampoo_granaattiomena.jpg?1408201748"}/
|
116
|
+
%td.name
|
117
|
+
%a{:href => "/prod/paeivittaein-granaattiomena-shampoo"}
|
118
|
+
Päivittäin – Granaattiomenashampoo
|
119
|
+
%td 13,20 €
|
120
|
+
%td 1
|
121
|
+
%td 13,20 €
|
122
|
+
|
123
|
+
%tr
|
124
|
+
%th
|
125
|
+
%th Tuotteet yhteensä
|
126
|
+
%th
|
127
|
+
%th
|
128
|
+
%th 111,22 €
|
129
|
+
%tr
|
130
|
+
%td
|
131
|
+
%td Toimituskulut
|
132
|
+
%td
|
133
|
+
%td
|
134
|
+
%td 8,25 €
|
135
|
+
%tr
|
136
|
+
%th
|
137
|
+
%th Tilaus yhteensä
|
138
|
+
%th
|
139
|
+
%th
|
140
|
+
%th 111,22 €
|
141
|
+
|
142
|
+
.row
|
143
|
+
.col-md-6
|
144
|
+
%button.btn.btn-primary.btn-xs#fill_address{:type => "button"} Kopioi uudeksi tilaukseksi
|
145
|
+
.col-md-6.text-right
|
146
|
+
Valittu toimitustapa: Postipaketti
|
147
|
+
-# = t(@order.shipment_type)
|
148
|
+
|
149
|
+
.row
|
150
|
+
%hr
|
151
|
+
%br
|
152
|
+
.col-md-3
|
153
|
+
%b Tilaus
|
154
|
+
No 123123123
|
155
|
+
vastaanotettu
|
156
|
+
23.11.2014 klo 16
|
157
|
+
|
158
|
+
|
159
|
+
.col-md-9
|
160
|
+
%div
|
161
|
+
%table.table.table-condensed
|
162
|
+
%thead
|
163
|
+
%tr
|
164
|
+
%th tuote
|
165
|
+
%th
|
166
|
+
%th hinta
|
167
|
+
%th määrä
|
168
|
+
%th yhteishinta
|
169
|
+
%tbody
|
170
|
+
%tr
|
171
|
+
%td.picture.text-center
|
172
|
+
%img{:alt => "Earl grey", :src => "/images/5771/thumb/earl_grey.gif?1411309551"}/
|
173
|
+
%td.name
|
174
|
+
%a{:href => "/prod/musta-tee-ceylon"}
|
175
|
+
Musta tee Ceylon
|
176
|
+
%td 4,30 €
|
177
|
+
%td 1
|
178
|
+
%td 4,30 €
|
179
|
+
%tr
|
180
|
+
%td.picture.text-center
|
181
|
+
%img{:alt => "Farfalla shampoo granaattiomena", :src => "/images/349/thumb/farfalla_shampoo_granaattiomena.jpg?1408201748"}/
|
182
|
+
%td.name
|
183
|
+
%a{:href => "/prod/paeivittaein-granaattiomena-shampoo"}
|
184
|
+
Päivittäin – Granaattiomenashampoo
|
185
|
+
%td 13,20 €
|
186
|
+
%td 1
|
187
|
+
%td 13,20 €
|
188
|
+
|
189
|
+
%tr
|
190
|
+
%th
|
191
|
+
%th Tuotteet yhteensä
|
192
|
+
%th
|
193
|
+
%th
|
194
|
+
%th 111,22 €
|
195
|
+
%tr
|
196
|
+
%td
|
197
|
+
%td Toimituskulut
|
198
|
+
%td
|
199
|
+
%td
|
200
|
+
%td 8,25 €
|
201
|
+
%tr
|
202
|
+
%th
|
203
|
+
%th Tilaus yhteensä
|
204
|
+
%th
|
205
|
+
%th
|
206
|
+
%th 111,22 €
|
207
|
+
|
208
|
+
.row
|
209
|
+
.col-md-6
|
210
|
+
%button.btn.btn-primary.btn-xs#fill_address{:type => "button"} Kopioi uudeksi tilaukseksi
|
211
|
+
.col-md-6.text-right
|
212
|
+
Valittu toimitustapa: Postipaketti
|
213
|
+
-# = t(@order.shipment_type)
|
214
|
+
|
215
|
+
\
|
216
|
+
%hr
|
217
|
+
%br
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
|
@@ -0,0 +1,99 @@
|
|
1
|
+
.row
|
2
|
+
%ol.breadcrumb
|
3
|
+
%li
|
4
|
+
%a{ :href => "/"}= t(:home)
|
5
|
+
%li
|
6
|
+
= t(:terms)
|
7
|
+
|
8
|
+
.row
|
9
|
+
.col-md-3
|
10
|
+
.group-wrapper.side.checkout
|
11
|
+
%img{:src => "/assets/shop/ikkuna.jpg"}/
|
12
|
+
|
13
|
+
.col-md-9
|
14
|
+
.row
|
15
|
+
%h3.highlight Toimitusehdot
|
16
|
+
%br/
|
17
|
+
%h4.text Hinnat ja maksutavat
|
18
|
+
Hinnat sisältävät arvonlisäveron 24%.
|
19
|
+
%br/
|
20
|
+
Maksaminen tapahtuu ennakkolaskulla. Kun olet tehnyt tilauksen, näet tilausvahvistuksessa laskun tiedot joiden perusteella voit maksaa. Saat myös kopion laskusta antamaasi sähköpostiosoitteeseen. Kun lasku on maksettu ja suoritus näkyy tilillämme, toimitamme tuotteen/tuotteet.
|
21
|
+
%br/
|
22
|
+
Yli 120 € tilauksen toimitamme ilman postikuluja (postipaketti).
|
23
|
+
%br/
|
24
|
+
Tuotteet voi tilata myös postiennakolla, jolloin lisämaksu Postipaketille on 4 €.
|
25
|
+
%br/
|
26
|
+
%br/
|
27
|
+
%h4.text Toimitus
|
28
|
+
Toimitamme tilaukset Suomeen postitse. Tavarat lähetetään varastostamme tavallisesti 2—3 työpäivän kuluessa siitä, kun tilausten maksusuoritus näkyy tilillä. Käsittelemme tilaukset niiden saapumisjärjestyksessä.
|
29
|
+
%br/
|
30
|
+
%br/
|
31
|
+
%h4.text Toimituskulut
|
32
|
+
%div{:align => "center"}
|
33
|
+
%table.table.table-hover.table-condensed
|
34
|
+
%tr
|
35
|
+
%td
|
36
|
+
%b
|
37
|
+
%em paino
|
38
|
+
%td
|
39
|
+
%b
|
40
|
+
%em
|
41
|
+
Postipaketti
|
42
|
+
%br/
|
43
|
+
noudetaan postista
|
44
|
+
%td
|
45
|
+
%b
|
46
|
+
%em
|
47
|
+
Ovelle-paketti
|
48
|
+
%br/
|
49
|
+
vastaanottajan ovelle
|
50
|
+
%td
|
51
|
+
%b
|
52
|
+
%em
|
53
|
+
Postiennakko,
|
54
|
+
%br/
|
55
|
+
Postipaketti
|
56
|
+
%td
|
57
|
+
%td
|
58
|
+
%td
|
59
|
+
%tr
|
60
|
+
%td alle 2 kg
|
61
|
+
%td 7 €
|
62
|
+
%td 10 €
|
63
|
+
%td 11 €
|
64
|
+
%tr
|
65
|
+
%td 2—5 kg
|
66
|
+
%td 9 €
|
67
|
+
%td 12 €
|
68
|
+
%td 13 €
|
69
|
+
%tr
|
70
|
+
%td 5—15 kg
|
71
|
+
%td 11 €
|
72
|
+
%td 14 €
|
73
|
+
%td 15 €
|
74
|
+
%tr
|
75
|
+
%td 15—30 kg
|
76
|
+
%td 15 €
|
77
|
+
%td 17 €
|
78
|
+
%td 19 €
|
79
|
+
%br/
|
80
|
+
%h4.text Tuotteiden värit
|
81
|
+
Teknisisten syiden vuoksi tuotteiden värit saattavat luonnossa poiketa siitä, miltä ne ruudulla näyttävät.
|
82
|
+
%br/
|
83
|
+
%br/
|
84
|
+
%h4.text Rekisteröityminen
|
85
|
+
Ostaessasi verkkokaupasta voit kirjautua asiakkaaksemme. Silloin sinun ei tarvitse kirjoittaa yhteystietojasi uudelleen kun ostat seuraavan kerran, ja voit jälkikäteen tarkistaa tilauksesi tiedot. Käytämme meille annettuja henkilötietoja ainoastaan asiakassuhteiden hallinnoimiseen, emme luovuta niitä ulkopuolisille.
|
86
|
+
%br/
|
87
|
+
Rekisteröityneille asiakkaillemme teemme kanta-asiakastarjouksia, muutaman kerran vuodessa.
|
88
|
+
%br/
|
89
|
+
%br/
|
90
|
+
%h4.text Palautus- ja vaihto-oikeus
|
91
|
+
Tuotteillamme on 14 päivän kuluttajasuojalain mukainen palautusoikeus. Mikäli et ole tilaamaasi tuotteeseen täysin tyytyväinen, otathan yhteyttä meihin sähköpostitse, niin voimme sopia palautustavasta.
|
92
|
+
%br/
|
93
|
+
Muistathan, että palautettavan tuotteen tulee olla käyttämätön ja alkuperäisessä pakkauksessaan.
|
94
|
+
%br/
|
95
|
+
%br/
|
96
|
+
%h4.text Tietosuoja / henkilötiedot
|
97
|
+
Käytämme meille annettuja henkilötietoja ainoastaan asiakassuhteiden hoitamiseen. Emme luovuta niitä ulkopuolisille. Asiakas voi poistaa yhteystietonsa milloin tahansa lähettämällä poistamispyynnön sähköpostitse. Emme pyydä emmekä tallenna mitään henkilökohtaisia maksutietoja asiakkailta.
|
98
|
+
%br/
|
99
|
+
|
data/config/locales/config.yml
CHANGED
data/config/locales/en.yml
CHANGED
@@ -90,6 +90,7 @@ en:
|
|
90
90
|
extra_picture: Extra picture
|
91
91
|
filter: Filter
|
92
92
|
first_name: First Name
|
93
|
+
history: Order history
|
93
94
|
info: Info
|
94
95
|
inventorized: Inventorized
|
95
96
|
inventory: Inventory
|
@@ -107,7 +108,7 @@ en:
|
|
107
108
|
name: Name
|
108
109
|
name_contains: Name contains
|
109
110
|
new: New
|
110
|
-
new_item: New item
|
111
|
+
new_item: New product item
|
111
112
|
next: Next
|
112
113
|
not_online: not online
|
113
114
|
online: Online
|
@@ -117,6 +118,7 @@ en:
|
|
117
118
|
ordered: Ordered
|
118
119
|
ordered_on: Ordered On
|
119
120
|
orders: Orders
|
121
|
+
our_shop: Our shop
|
120
122
|
paid_on: Paid on
|
121
123
|
parent: Parent
|
122
124
|
phone: Phone
|
@@ -132,14 +134,10 @@ en:
|
|
132
134
|
product_added: Product added
|
133
135
|
product_line: Product Line
|
134
136
|
product_line_has_inventory: Product Line has inventori
|
135
|
-
product_line_has_ean: Product Line has ean
|
136
|
-
product_item_has_link: Product item has link
|
137
|
-
product_line_has_scode: Product Line has supplier code
|
138
137
|
products: Products
|
139
138
|
purchase: Purchase
|
140
139
|
purchases: Purchases
|
141
140
|
quantity: Quantity
|
142
|
-
receipt: Receit
|
143
141
|
receive: Receive
|
144
142
|
received: Received
|
145
143
|
received_on: Received On
|
@@ -165,6 +163,7 @@ en:
|
|
165
163
|
tax: Vat
|
166
164
|
tax_percent: Tax percent
|
167
165
|
tax_rate: Vat rate
|
166
|
+
terms: Terms
|
168
167
|
to_order: To order
|
169
168
|
to_purchase: To purchase
|
170
169
|
to_product: To product
|
data/config/locales/fi.yml
CHANGED
@@ -100,6 +100,7 @@ fi:
|
|
100
100
|
extra_picture: Toinen kuva
|
101
101
|
filter: Hae
|
102
102
|
first_name: Etunimi
|
103
|
+
history: Tilaushistoria
|
103
104
|
home: Kotiin
|
104
105
|
info: Info
|
105
106
|
inventorized: Inventoitu
|
@@ -116,11 +117,12 @@ fi:
|
|
116
117
|
main_picture: Kuva
|
117
118
|
make_order: Luo Tilaus
|
118
119
|
make_purchase: Luo Sisäänosto
|
120
|
+
manage: Hallinta
|
119
121
|
may_be_blank: Voi jättää tyhjäksi
|
120
122
|
name: Nimi
|
121
123
|
name_contains: Nimi sisältää
|
122
124
|
new: Uusi
|
123
|
-
new_item: Uusi tuote
|
125
|
+
new_item: Uusi tuote tuotelinjalle
|
124
126
|
next: seuraava
|
125
127
|
notice: Huom
|
126
128
|
not_online: ei netissä
|
@@ -129,10 +131,12 @@ fi:
|
|
129
131
|
order: Tilaus
|
130
132
|
order_number: Tilauksen numero
|
131
133
|
order_total: Loppusumma
|
132
|
-
order_more_for_free_shipping: "%{more} €
|
134
|
+
order_more_for_free_shipping: "%{more} € jäljellä ilmaiseen toimitukseen"
|
133
135
|
ordered: Tilattu
|
134
136
|
ordered_on: Tilattu
|
135
137
|
orders: Tilaukset
|
138
|
+
our_shop: Liikkeemme
|
139
|
+
paid: Maksa
|
136
140
|
paid_on: Maksettu
|
137
141
|
parent: Tuoteryhmä
|
138
142
|
password: Salasana
|
@@ -145,24 +149,26 @@ fi:
|
|
145
149
|
price_between: Hinta haarukka
|
146
150
|
print: Tulosta
|
147
151
|
print_order: Tulosta
|
152
|
+
print_invoice: Tulosta tilaus
|
153
|
+
print_reminder: Tulosta maksumuistutus
|
154
|
+
print_slip: Tulosta kuormakirja
|
155
|
+
print_receipt: Tulosta kuitti
|
148
156
|
product: Tuote
|
149
157
|
product_added: Tuote lisätty ostoskoriin
|
150
158
|
product_line: Tuotelinja
|
159
|
+
product_item: Tuote Tuotelinjalla
|
151
160
|
product_line_has_inventory: Tuotelinjassa on inventaario
|
152
|
-
product_line_has_ean: Tuotelinjassa on ean
|
153
|
-
product_item_has_link: Tuoteessa on linki
|
154
|
-
product_line_has_scode: Tuotelinjassa on tuottajatunnus
|
155
161
|
products: Tuotteet
|
156
162
|
purchase: Sisäänosto
|
157
163
|
purchases: Sisäänostot
|
158
164
|
quantity: Määrä
|
159
|
-
receipt: Kuitti
|
160
165
|
receive: Ota vastaan
|
161
166
|
received: Vastaanotettu
|
162
167
|
received_on: Vastaanotettu
|
163
168
|
scode: Tuottajatunnus
|
164
169
|
search: Hae
|
165
170
|
select: Valitse
|
171
|
+
ship: Lähetä
|
166
172
|
shipment_price: Lähetyksen hinta
|
167
173
|
shipment_type: Lähetyksen tapa
|
168
174
|
shipped_on: Lähetetty
|
@@ -193,6 +199,7 @@ fi:
|
|
193
199
|
tax: Alv
|
194
200
|
tax_percent: Veroprosentti
|
195
201
|
tax_rate: Veroprosentti
|
202
|
+
terms: Toimitusehdot
|
196
203
|
to_order: Tilaukselle
|
197
204
|
to_product: Tuotelle
|
198
205
|
to_purchase: Sisänostoksille
|