Merge lp:~jfb-tempo-consulting/unifield-server/us-3992 into lp:unifield-server

Proposed by jftempo
Status: Merged
Merged at revision: 4686
Proposed branch: lp:~jfb-tempo-consulting/unifield-server/us-3992
Merge into: lp:unifield-server
Diff against target: 2962 lines (+2919/-1)
4 files modified
bin/addons/analytic_distribution_supply/invoice.py (+1/-1)
bin/addons/unifield_tests/testfield/init_data/set_rb_partial_tf.py (+114/-0)
bin/addons/unifield_tests/testfield/meta_features/tc0.meta_feature (+1138/-0)
bin/addons/unifield_tests/testfield/meta_features/tc1.meta_feature (+1666/-0)
To merge this branch: bzr merge lp:~jfb-tempo-consulting/unifield-server/us-3992
Reviewer Review Type Date Requested Status
UniField Reviewer Team Pending
Review via email: mp+336228@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'bin/addons/analytic_distribution_supply/invoice.py'
--- bin/addons/analytic_distribution_supply/invoice.py 2018-01-10 15:57:41 +0000
+++ bin/addons/analytic_distribution_supply/invoice.py 2018-01-17 15:53:07 +0000
@@ -216,7 +216,7 @@
216 # NB: This permits to avoid modification on commitment voucher when receiving some goods216 # NB: This permits to avoid modification on commitment voucher when receiving some goods
217 self.pool.get('account.commitment').write(cr, uid, [cv_line[2]], {'state': 'open'}, context=context)217 self.pool.get('account.commitment').write(cr, uid, [cv_line[2]], {'state': 'open'}, context=context)
218218
219 if abs(cv_line[4] - account_amount_dic[account]) > 0.001:219 if cv_line[4] - account_amount_dic[account] > 0.001:
220 # update amount left on CV line220 # update amount left on CV line
221 amount_left = cv_line[4] - account_amount_dic[account]221 amount_left = cv_line[4] - account_amount_dic[account]
222 self.pool.get('account.commitment.line').write(cr, uid, [cv_line[0]], {'amount': amount_left}, context=context)222 self.pool.get('account.commitment.line').write(cr, uid, [cv_line[0]], {'amount': amount_left}, context=context)
223223
=== modified file 'bin/addons/unifield_tests/testfield/init_data/set_rb_partial_tf.py'
--- bin/addons/unifield_tests/testfield/init_data/set_rb_partial_tf.py 2017-11-06 14:44:06 +0000
+++ bin/addons/unifield_tests/testfield/init_data/set_rb_partial_tf.py 2018-01-17 15:53:07 +0000
@@ -29,6 +29,110 @@
2929
3030
31sync_needed = False31sync_needed = False
32# create CC
33
34all_ccs = {
35 'HQ1': [
36 ('MW1', {'target': 'HQ1C1', 'top': 'HQ1C1'}),
37 ('MW101', {'target': 'HQ1C1', 'fopo': 'HQ1C1'}),
38 ('MW109', {'target': 'HQ1C1'}),
39 ('MW110', {'target': 'HQ1C1P1', 'top': 'HQ1C1P1', 'fopo': 'HQ1C1P1'}),
40 ('MW120', {'target': 'HQ1C1P2', 'top': 'HQ1C1P2', 'fopo': 'HQ1C1P2'}),
41
42 ('BI1', {'target': 'HQ1C2', 'top': 'HQ1C2'}),
43 ('BI101', {'target': 'HQ1C2', 'fopo': 'HQ1C2'}),
44 ('BI109', {'target': 'HQ1C2'}),
45 ('BI110', {'target': 'HQ1C2P1', 'top': 'HQ1C2P1', 'fopo': 'HQ1C2P1'}),
46 ('BI120', {'target': 'HQ1C2P2', 'top': 'HQ1C2P2', 'fopo': 'HQ1C2P2'}),
47 ],
48 'HQ2': [
49 ('ZW1', {'target': 'HQ2C1', 'top': 'HQ2C1'}),
50 ('ZW101', {'target': 'HQ2C1', 'fopo': 'HQ2C1'}),
51 ('ZW109', {'target': 'HQ2C1'}),
52 ]
53}
54
55for hq in all_ccs.keys():
56 new_ccs = all_ccs[hq]
57
58 l = oerp.login(UNIFIELD_ADMIN, UNIFIELD_PASSWORD, '%s_%s' % (DB_PREFIX, hq))
59 cc_o = oerp.get('account.analytic.account')
60 target_cc = oerp.get('account.target.costcenter')
61
62 all_instances = {}
63 instance_ids = oerp.get('msf.instance').search([])
64 for x in oerp.get('msf.instance').read(instance_ids, ['code']):
65 all_instances[x['code']] = x['id']
66
67
68 for new_cc, data_cc in new_ccs:
69 cc_id = cc_o.search([('code', '=', new_cc)])
70 if not cc_id:
71 if len(new_cc) == 3:
72 parent_id = cc_o.search([('code', '=', 'OC')])[0]
73 parent_id = cc_o.create({
74 'name': new_cc,
75 'code': new_cc,
76 'type': 'view',
77 'category': 'OC',
78 'parent_id': parent_id,
79 'date_start': '2015-01-01',
80 })
81
82 else:
83 cc_o.create({
84 'name': new_cc,
85 'code': new_cc,
86 'type': 'normal',
87 'category': 'OC',
88 'parent_id': parent_id,
89 'date_start': '2015-01-01',
90 })
91 elif len(new_cc) == 3:
92 parent_id = cc_id[0]
93
94 target_ids = target_cc.search([])
95 target_cc.write(target_ids, {'is_top_cost_center': False, 'is_po_fo_cost_center': False})
96 for cc, data_cc in new_ccs:
97 coordo = all_instances['%s_%s' % (DB_PREFIX, data_cc['target'][0:5])]
98 target_id = target_cc.search([('instance_id', '=', coordo), ('cost_center_id', '=', cc)])
99
100 if not target_id:
101 cc_id = cc_o.search([('code', '=', cc)])[0]
102 target_cc.create({'instance_id': coordo, 'cost_center_id': cc_id})
103
104 if data_cc.get('target'):
105 target_id = target_cc.search([('instance_id', '=', all_instances.get('%s_%s' % (DB_PREFIX, data_cc.get('target')))), ('cost_center_id', '=', cc)])
106 values = {'is_target': True}
107 if data_cc.get('top'):
108 values['is_top_cost_center'] = True
109 if data_cc.get('fopo'):
110 values['is_po_fo_cost_center'] = True
111 target_cc.write(target_id, values)
112
113
114 # create 2016 / 2017 FY
115 fy_obj = oerp.get('account.fiscalyear')
116 period_obj = oerp.get('account.period')
117 if not fy_obj.search([('date_start', '=', '2017-01-01'), ('date_stop', '=', '2017-12-31')]):
118 fy_id = fy_obj.create({'date_start': '2017-01-01', 'date_stop': '2017-12-31', 'name': 'FY 2017', 'code': 'FY2017'})
119 fy_obj.create_period([fy_id])
120 period_ids = period_obj.search([('fiscalyear_id', '=', fy_id)])
121 period_obj.write(period_ids, {'state': 'draft'})
122 if not fy_obj.search([('date_start', '=', '2016-01-01'), ('date_stop', '=', '2016-12-31')]):
123 fy_id = fy_obj.create({'date_start': '2016-01-01', 'date_stop': '2016-12-31', 'name': 'FY 2016', 'code': 'FY2016'})
124 fy_obj.create_period([fy_id])
125 period_ids = period_obj.search([('fiscalyear_id', '=', fy_id)])
126 period_obj.write(period_ids, {'state': 'draft'})
127
128 oerp.get('sync.client.entity').sync()
129 for x in all_instances:
130 oerp.login(UNIFIELD_ADMIN, UNIFIELD_PASSWORD, x)
131 period_obj = oerp.get('account.period')
132 period_ids = period_obj.search(['|', ('fiscalyear_id', '=', 'FY 2017'), ('fiscalyear_id', '=', 'FY 2016'), ('state', '=', 'created')])
133 period_obj.write(period_ids, {'state': 'draft'})
134 oerp.get('sync.client.entity').sync()
135
32l = oerp.login(UNIFIELD_ADMIN, UNIFIELD_PASSWORD, '%s_HQ1C1' % DB_PREFIX)136l = oerp.login(UNIFIELD_ADMIN, UNIFIELD_PASSWORD, '%s_HQ1C1' % DB_PREFIX)
33prod_o = oerp.get('product.product')137prod_o = oerp.get('product.product')
34if not prod_o.search([('default_code', '=', 'AZAZA')]):138if not prod_o.search([('default_code', '=', 'AZAZA')]):
@@ -51,6 +155,16 @@
51 sync_needed = True155 sync_needed = True
52 oerp.get('res.partner').write(p_ids, {'active': True})156 oerp.get('res.partner').write(p_ids, {'active': True})
53157
158partner_obj = oerp.get('res.partner')
159if not partner_obj.search([('name', '=', '%s_HQ1C1P2' % DB_PREFIX)]):
160 account_obj = oerp.get('account.account')
161 rec = account_obj.search([('code', '=', '12050')])[0]
162 pay = account_obj.search([('code', '=', '30020')])[0]
163 partner_obj.create({'name': '%s_HQ1C1P2' % DB_PREFIX, 'partner_type': 'internal', 'property_account_receivable': rec, 'property_account_payable': pay, 'supplier': True})
164 oerp.get('sync.client.entity').sync()
165 sync_needed = True
166
167
54loc_o = oerp.get('stock.location')168loc_o = oerp.get('stock.location')
55loc_ids = loc_o.search([('name', '=', 'LOG')])169loc_ids = loc_o.search([('name', '=', 'LOG')])
56prod_o = oerp.get('product.product')170prod_o = oerp.get('product.product')
57171
=== added directory 'bin/addons/unifield_tests/testfield/meta_features'
=== added file 'bin/addons/unifield_tests/testfield/meta_features/tc0.meta_feature'
--- bin/addons/unifield_tests/testfield/meta_features/tc0.meta_feature 1970-01-01 00:00:00 +0000
+++ bin/addons/unifield_tests/testfield/meta_features/tc0.meta_feature 2018-01-17 15:53:07 +0000
@@ -0,0 +1,1138 @@
1Feature: SSL Pushed FO (with split)
2
3@supply @pushed FO @SSL
4Scenario: SSL Pushed FO (with split)
5
6
7#PARAMETRIZATION:
8
9# HQ1C1: need to have 100000 quantity of DINJCEFA1V- in MED
10
11
12
13#LINE 2
14 I log into instance "HQ1C1"
15 I open tab menu "ORDERS"
16 I click on menu "Field Orders"
17 I click on "New"
18 I fill "Customer" with "HQ1C1P1"
19
20
21 # Add multiple products at the same time
22 I click on "Add multiple lines" and open the window
23 I click on "Add" and open the window
24 I fill "Code" with "ADAP"
25 I click on "Search"
26 I click "checkbox" on line:
27 | CODE |
28 | ADAPCABL1S- |
29 | ADAPCABL2S- |
30 | ADAPCART02- |
31
32
33 I click on "Select" and close the window
34 I click "Edit" on line:
35 | CODE |
36 | ADAPCABL1S- |
37 I fill "10" within column "QTY"
38 I validate the line
39 I click "Edit" on line:
40 | CODE |
41 | ADAPCABL2S- |
42 I fill "10" within column "QTY"
43 I validate the line
44 I click "Edit" on line:
45 | CODE |
46 | ADAPCART02- |
47 I fill "10" within column "QTY"
48 I validate the line
49
50 I click on "Add products" and close the window
51
52
53
54 # Add products line by line
55
56 I click on "New" and open the window
57 I fill "Product" with "[DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial"
58 I fill "Quantity (UoM)" with "30.00"
59 I click on "Save & Close" and close the window
60
61 I store "Order Reference" in "FO_REFERENCE"
62
63 I click on "Analytical Distribution" and open the window
64 I click on "New"
65 I fill "SUP" within column "DESTINATION"
66 I fill "MW120" within column "COST CENTER"
67 I validate the line
68 I click on "Save" and close the window
69
70
71 I should see in the main table the following data:
72 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
73 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Draft |
74 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Draft |
75 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Draft |
76 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Draft |
77
78 I should see "Draft" in "State"
79
80#LINE 3
81
82 I click "Validate" on line:
83 | PRODUCT CODE |
84 | ADAPCABL1S- |
85
86 I click "Validate" on line:
87 | PRODUCT CODE |
88 | ADAPCART02- |
89
90 I should see in the main table the following data:
91 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
92 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Validated |
93 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Draft |
94 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Validated |
95 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Draft |
96
97 I should see "Draft-p" in "State"
98
99
100
101#LINE 4
102
103 I click on menu "Orders Sourcing Tool"
104 I fill "Order" with "{{FO_REFERENCE}}"
105 I click on "Search"
106
107 I click "Edit" on line:
108 | PRODUCT |
109 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem)|
110 I fill "ITCompany" within column "SUPPLIER"
111 I validate the line
112 I click "Source Line" on line:
113 | PRODUCT |
114 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem)|
115
116 I click on menu "Field Orders"
117
118 I click "Edit" on line:
119 | ORDER REFERENCE |
120 | *{{FO_REFERENCE}} |
121
122 I should see in the main table the following data:
123 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
124 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Sourced |
125 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Validated |
126
127#Additional sync checks
128 ####################
129 ## SYNCHRONIZATION
130 ###################
131 I synchronize "HQ1C1"
132 I log out
133 I synchronize "HQ1C1P1"
134 I log into instance "HQ1C1P1"
135
136 I open tab menu "PURCHASES"
137 I click on menu "Purchase Orders"
138 I fill "Source Document" with "{{FO_REFERENCE}}"
139 I click on "Search"
140
141 I should not see in the main table the following data:
142 | SOURCE DOCUMENT |
143 | {{FO_REFERENCE}} |
144
145
146
147 I log out
148 I log into instance "HQ1C1"
149
150
151#LINE 5
152 I open tab menu "ORDERS"
153 I click on menu "Field Orders"
154 I click "Edit" on line:
155 | ORDER REFERENCE |
156 | *{{FO_REFERENCE}}* |
157 I click "Validate" on line:
158 | PRODUCT CODE |
159 | ADAPCABL2S- |
160
161 I should see in the main table the following data:
162 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
163 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Sourced |
164 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Validated |
165 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Validated |
166 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Draft |
167
168
169 I should see "Draft-p" in "State"
170
171#LINE 6
172
173 I click on menu "Orders Sourcing Tool"
174 I fill "Order" with "{{FO_REFERENCE}}"
175 I click on "Search"
176
177 I click "Edit" on line:
178 | PRODUCT |
179 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male |
180 I fill "Local Market" within column "SUPPLIER"
181 I validate the line
182 I click "Source Line" on line:
183 | PRODUCT |
184 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male |
185
186
187 I click on menu "Field Orders"
188 I click "Edit" on line:
189 | ORDER REFERENCE |
190 | *{{FO_REFERENCE}}* |
191
192 I should see in the main table the following data:
193 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
194 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Sourced |
195 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Sourced |
196 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Validated |
197 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Draft |
198
199 I should see "Draft-p" in "State"
200
201
202
203 I open tab menu "PURCHASES"
204 I click on menu "Purchase Orders"
205 I fill "SOURCE DOCUMENT" with "{{FO_REFERENCE}}"
206
207 I click "Search" until I see:
208 | SOURCE DOCUMENT | SUPPLIER |
209 | {{FO_REFERENCE}} | ITCompany |
210 I click "Edit" on line:
211 | SOURCE DOCUMENT | SUPPLIER |
212 | {{FO_REFERENCE}} | ITCompany |
213
214#LINE 7
215
216 I click "Edit" on line and open the window:
217 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
218 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Draft |
219
220 I fill "Quantity" with "50.00"
221 I fill "Unit Price" with "22.00"
222 I click on "Save & close" and close the window
223
224#LINE 8
225
226 I click "Validate" on line:
227 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
228 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Draft |
229
230 I should see "Validated" in "Order State"
231 I store "Order Reference" in "PO_REF_1"
232
233
234 I open tab menu "ORDERS"
235 I click on menu "Field Orders"
236 I click "Edit" on line:
237 | ORDER REFERENCE |
238 | *{{FO_REFERENCE}}* |
239
240 I should see in the main table the following data:
241 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QTY | SUBTOTAL |
242 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Sourced-v | 50.00 | 1,100.00 |
243 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Sourced | * | * |
244 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Validated | * | * |
245 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Draft | * | * |
246
247
248
249
250#LINE 9
251
252 I open tab menu "PURCHASES"
253 I click on menu "Purchase Orders"
254 I click "Edit" on line:
255 | REFERENCE | SUPPLIER |
256 | {{PO_REF_1}} | ITCompany |
257
258 I click "Edit" on line and open the window:
259 | PRODUCT CODE | PRODUCT DESCRIPTION |
260 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) |
261 I fill "Delivery Confirmed Date" with "05/Oct/2017"
262 I click on "Save & Close" and close the window
263
264 I click "Confirm" on line:
265 | PRODUCT CODE | PRODUCT DESCRIPTION |
266 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) |
267
268 I should see in the main table the following data:
269 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
270 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Confirmed |
271
272 I should see "Confirmed" in "Order State"
273
274
275 I open tab menu "ORDERS"
276 I click on menu "Field Orders"
277 I click "Edit" on line:
278 | ORDER REFERENCE |
279 | *{{FO_REFERENCE}}* |
280
281 I should see in the main table the following data:
282 | PRODUCT CODE | STATE | QTY | SUBTOTAL |
283 | ADAPCABL1S- | Confirmed | 50.00 | 1,100.00 |
284
285
286 #Additional sync checks
287 ####################
288 ## SYNCHRONIZATION
289 ###################
290 I synchronize "HQ1C1"
291 I log out
292 I synchronize "HQ1C1P1"
293 I log into instance "HQ1C1P1"
294
295 I open tab menu "PURCHASES"
296 I click on menu "Purchase Orders"
297 I fill "Source Document" with "{{FO_REFERENCE}}"
298 I click on "Search"
299
300 I should not see in the main table the following data:
301 | SOURCE DOCUMENT |
302 | {{FO_REFERENCE}} |
303
304
305 I log out
306 I log into instance "HQ1C1"
307
308
309 # LINE 10
310
311 I open tab menu "ORDERS"
312 I click on menu "Orders Sourcing Tool"
313 I fill "Order" with "{{FO_REFERENCE}}"
314 I click on "Search"
315
316 I click "Edit" on line:
317 | PRODUCT |
318 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING |
319 I fill "Local Market" within column "SUPPLIER"
320 I validate the line
321 I click "Source Line" on line:
322 | PRODUCT |
323 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING |
324
325#LINE 11
326
327 I open tab menu "PURCHASES"
328 I click on menu "Purchase Orders"
329 I fill "SOURCE DOCUMENT" with "{{FO_REFERENCE}}"
330
331 I click "Search" until I see:
332 | SOURCE DOCUMENT | SUPPLIER |
333 | {{FO_REFERENCE}} | Local Market |
334 I click "Edit" on line:
335 | SOURCE DOCUMENT | SUPPLIER |
336 | {{FO_REFERENCE}} | Local Market |
337
338
339 I click "Edit" on line and open the window:
340 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
341 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Draft |
342
343 I fill "Quantity" with "50.00"
344 I click on "Save & close" and close the window
345
346 I click "Validate" on line:
347 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY |
348 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Draft | 50.00 |
349
350 I should see in the main table the following data:
351 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY |
352 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Validated | 50.00 |
353 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Draft | * |
354
355 I should see "Draft-p" in "Order State"
356
357 I store "Order Reference" in "PO_REF_2"
358
359
360 I open tab menu "ORDERS"
361 I click on menu "Field Orders"
362 I click "Edit" on line:
363 | ORDER REFERENCE |
364 | *{{FO_REFERENCE}}* |
365
366 I should see in the main table the following data:
367 | PRODUCT CODE | STATE | QTY | SUBTOTAL |
368 | ADAPCABL1S- | Confirmed | 50.00 | 1,100.00 |
369 | ADAPCABL2S- | Sourced | * | * |
370 | ADAPCART02- | Sourced-v | 50.00 | * |
371 | DINJCEFA1V- | Draft | * | * |
372
373 I should see "Draft-p" in "State"
374
375#LINE 12
376
377 I open tab menu "PURCHASES"
378 I click on menu "Purchase Orders"
379 I click "Edit" on line:
380 | REFERENCE | SUPPLIER |
381 | {{PO_REF_2}} | Local Market |
382
383 I click "Validate" on line:
384 | PRODUCT CODE | PRODUCT DESCRIPTION |
385 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male |
386
387 I should see "Validated" in "Order State"
388
389#LINE 13
390
391 I click "Edit" on line and open the window:
392 | PRODUCT CODE | PRODUCT DESCRIPTION |
393 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male |
394
395 I fill "Unit Price" with "12.00"
396 I fill "Delivery Confirmed Date" with "05/Oct/2017"
397 I click on "Save & Close" and close the window
398
399 I click "Confirm" on line:
400 | PRODUCT CODE | PRODUCT DESCRIPTION |
401 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male |
402
403 I should see in the main table the following data:
404 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | SUBTOTAL |
405 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Confirmed | 120.00 |
406 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Validated | * |
407
408 I should see "Validated-p" in "Order State"
409
410
411 I open tab menu "ORDERS"
412 I click on menu "Field Orders"
413 I click "Edit" on line:
414 | ORDER REFERENCE |
415 | *{{FO_REFERENCE}}* |
416
417 I should see in the main table the following data:
418 | PRODUCT CODE | STATE | QTY | SUBTOTAL |
419 | ADAPCABL1S- | Confirmed | 50.00 | 1,100.00 |
420 | ADAPCABL2S- | Confirmed | * | 120.00 |
421 | ADAPCART02- | Sourced-v | 50.00 | * |
422 | DINJCEFA1V- | Draft | * | * |
423
424 I should see "Draft-p" in "State"
425
426
427 #Additional sync checks
428 ####################
429 ## SYNCHRONIZATION
430 ###################
431 I synchronize "HQ1C1"
432 I log out
433 I synchronize "HQ1C1P1"
434 I log into instance "HQ1C1P1"
435
436 I open tab menu "PURCHASES"
437 I click on menu "Purchase Orders"
438 I fill "Source Document" with "{{FO_REFERENCE}}"
439 I click on "Search"
440
441 I should not see in the main table the following data:
442 | SOURCE DOCUMENT |
443 | {{FO_REFERENCE}} |
444
445
446 I log out
447 I log into instance "HQ1C1"
448
449
450
451#LINE 14
452
453 I open tab menu "ORDERS"
454 I click on menu "Field Orders"
455 I click "Edit" on line:
456 | ORDER REFERENCE |
457 | *{{FO_REFERENCE}}* |
458
459 I click "Edit" on line and open the window:
460 | PRODUCT CODE | STATE |
461 | DINJCEFA1V- | Draft |
462 I fill "Unit Price" with "5.00"
463 I click on "Save & Close" and close the window
464
465
466 I click "Validate" on line:
467 | PRODUCT CODE | STATE |
468 | DINJCEFA1V- | Draft |
469
470 I should see in the main table the following data:
471 | PRODUCT CODE | STATE | QTY | SUBTOTAL |
472 | ADAPCABL1S- | Confirmed | 50.00 | 1,100.00 |
473 | ADAPCABL2S- | Confirmed | * | 120.00 |
474 | ADAPCART02- | Sourced-v | 50.00 | * |
475 | DINJCEFA1V- | Validated | * | 150.00 |
476
477 I should see "Validated-p" in "State"
478
479
480 #Additional sync checks
481 ####################
482 ## SYNCHRONIZATION
483 ###################
484 I synchronize "HQ1C1"
485 I log out
486 I synchronize "HQ1C1P1"
487 I log into instance "HQ1C1P1"
488
489 I open tab menu "PURCHASES"
490 I click on menu "Purchase Orders"
491 I fill "Source Document" with "{{FO_REFERENCE}}"
492 I click on "Search"
493
494 I should see in the main table the following data:
495 | SOURCE DOCUMENT |
496 | {{FO_REFERENCE}} |
497 I click "Edit" on line:
498 | SOURCE DOCUMENT |
499 | {{FO_REFERENCE}} |
500
501 I should see in the main table the following data:
502 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY | SUBTOTAL |
503 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Confirmed | 50.00 | 1,100.00 |
504 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Confirmed | * | 120.00 |
505 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Sourced-sy | 50.00 | * |
506 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Validated | * | 150.00 |
507
508 I should see "Validated-p" in "Order State"
509
510 I store "Order Reference" in "PO_REF_P1"
511
512
513 I open tab menu "WAREHOUSE"
514 I open accordion menu "Warehouse Management"
515 I click on menu "Incoming Shipments"
516
517 I click "Edit" on line:
518 | ORIGIN |
519 | *{{PO_REF_P1}}* |
520
521 I should see in the main table the following data:
522 | PRODUCT | STATE |
523 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Available |
524 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Available |
525
526 I should see "Available" in "State"
527
528
529 I log into instance "HQ1C1"
530
531#LINE 15
532
533 I open tab menu "ORDERS"
534 I click on menu "Orders Sourcing Tool"
535 I fill "Order" with "{{FO_REFERENCE}}"
536 I click on "Search"
537
538 I click "Split line" on line and open the window:
539 | PRODUCT |
540 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial |
541
542 I fill "New line quantity" with "25.00"
543 I click on "Split line" and close the window
544
545 I click "Edit" on line:
546 | PRODUCT | QTY |
547 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | 5.00 |
548
549 I fill "from stock" within column "PROC. METHOD"
550 I validate the line
551 I click "Source Line" on line:
552 | PRODUCT | QTY |
553 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | 5.00 |
554
555
556 I click "Edit" on line:
557 | PRODUCT | QTY |
558 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | 25.00 |
559
560 I fill "ESC" within column "SUPPLIER"
561 I validate the line
562 I click "Source Line" on line:
563 | PRODUCT | QTY |
564 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | 25.00 |
565
566
567 I click on menu "Field Orders"
568
569 I click "Edit" on line:
570 | ORDER REFERENCE |
571 | *{{FO_REFERENCE}} |
572
573 I should see in the main table the following data:
574 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QTY |
575 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Confirmed | 5.00 |
576 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Sourced | 25.00 |
577
578 I should see "Sourced-p" in "State"
579
580#LINE 16
581
582 I open tab menu "WAREHOUSE"
583 I open accordion menu "Warehouse Management"
584 I click on menu "Incoming Shipments"
585
586 I click "Edit" on line:
587 | PURCHASE ORDER |
588 | *{{PO_REF_1}}* |
589
590 I should see in the main table the following data:
591 | PRODUCT | STATE |
592 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Available |
593
594 I click on "Process" and open the window
595 I click on "Copy all"
596 I click on "Process" and close the window if necessary
597 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
598 I click on "Close" and close the window if a window is open
599
600#LINE 17
601
602 I open accordion menu "Warehouse Management"
603 I click on menu "Deliveries|Picking"
604
605
606 I click "Edit" on line:
607
608 | ORIGIN | LINES STATE |
609 | {{FO_REFERENCE}} | *vailable* |
610
611 I click on "Create Picking..." and open the window
612 I click on "Copy all"
613 I click on "Create Picking" and close the window
614
615 I click on "Validate Picking..." and open the window
616 I click on "Copy all"
617 I click on "Validate Picking" and close the window
618
619 I click on "Pack..." and open the window
620 I click on "Next"
621 I click "Edit" on line:
622 | FROM P. |
623 | 1 |
624
625 I fill "2" within column "Weight P.P [KG]"
626 I validate the line
627
628 I click on "Process" and close the window
629
630 I click on "Create Shipment..." and open the window
631 I click on "Create Shipment" and close the window
632
633 I click on "Validate"
634
635 I store "Reference" in "SHIPREF_1"
636
637
638 I open tab menu "ORDERS"
639 I click on menu "Field Orders"
640 I click "Edit" on line:
641 | ORDER REFERENCE |
642 | *{{FO_REFERENCE}}|
643
644 I should see in the main table the following data:
645 | PRODUCT CODE | STATE | QTY | SUBTOTAL |
646 | ADAPCABL1S- | Closed | 50.00 | 1,100.00 |
647 | ADAPCABL2S- | Confirmed | * | 120.00 |
648 | ADAPCART02- | Sourced-v | 50.00 | * |
649 | DINJCEFA1V- | Closed | 5.00 | * |
650 | DINJCEFA1V- | Sourced | 25.00 | * |
651
652 I should see "Sourced-p" in "State"
653
654
655#LINE 18
656
657 I open tab menu "PURCHASES"
658 I click on menu "Purchase Orders"
659 I click "Edit" on line:
660 | REFERENCE | SUPPLIER |
661 | {{PO_REF_2}} | Local Market |
662
663 I click "Edit" on line and open the window:
664 | PRODUCT CODE | PRODUCT DESCRIPTION |
665 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING |
666
667 I fill "Delivery Confirmed Date" with "05/Oct/2017"
668 I click on "Save & Close" and close the window
669
670 I click "Confirm" on line:
671 | PRODUCT CODE | PRODUCT DESCRIPTION |
672 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING |
673
674 I should see in the main table the following data:
675 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
676 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Confirmed |
677 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Confirmed |
678
679 I should see "Confirmed" in "Order State"
680
681
682 I open tab menu "ORDERS"
683 I click on menu "Field Orders"
684 I click "Edit" on line:
685 | ORDER REFERENCE |
686 | *{{FO_REFERENCE}}|
687
688 I should see in the main table the following data:
689 | PRODUCT CODE | STATE | QTY | SUBTOTAL |
690 | ADAPCABL1S- | Closed | 50.00 | 1,100.00 |
691 | ADAPCABL2S- | Confirmed | * | 120.00 |
692 | ADAPCART02- | Confirmed | 50.00 | * |
693 | DINJCEFA1V- | Closed | 5.00 | * |
694 | DINJCEFA1V- | Sourced | 25.00 | * |
695
696 I should see "Sourced-p" in "State"
697
698#LINE 19
699
700 I open tab menu "PURCHASES"
701 I click on menu "Purchase Orders"
702 I click "Edit" on line:
703 | SOURCE DOCUMENT | SUPPLIER |
704 | {{FO_REFERENCE}} | ESC |
705
706
707 I fill "Date of Stock Take" with "28/Dec/2015"
708 I click on "Update Lines" and open the window
709 I click on "Yes" and close the window
710
711 I click "Validate" on line:
712 | PRODUCT CODE | PRODUCT DESCRIPTION |
713 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial |
714
715 I should see "Validated" in "Order State"
716
717 I store "Order Reference" in "PO_REF_3"
718
719
720#LINE 20
721
722 I click on "New" and open the window
723 I fill "Product" with "[ADAPKBDAUSB] KEYBOARD, AZERTY, external, USB"
724 I fill "Quantity" with "25.00"
725 I fill "Unit Price" with "1.00"
726
727 I click on button_id "order_line/select_fo_select" and open the window
728 I fill "ORDER REFERENCE" with "{{FO_REFERENCE}}"
729 I click on "Search"
730 I click "option" on line and close the window:
731 | ORDER REFERENCE |
732 | *{{FO_REFERENCE}}* |
733
734 I click on "Save & Close" and close the window
735
736 I should see in the main table the following data:
737 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY |
738 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Validated | 25.00 |
739 | ADAPKBDAUSB | KEYBOARD, AZERTY, external, USB | Validated-n | 25.00 |
740
741
742 I open tab menu "ORDERS"
743 I click on menu "Field Orders"
744 I click "Edit" on line:
745 | ORDER REFERENCE |
746 | *{{FO_REFERENCE}}|
747
748 I should see in the main table the following data:
749 | PRODUCT CODE | STATE | QTY | SUBTOTAL |
750 | ADAPCABL1S- | Closed | 50.00 | 1,100.00 |
751 | ADAPCABL2S- | Confirmed | * | 120.00 |
752 | ADAPCART02- | Confirmed | 50.00 | * |
753 | DINJCEFA1V- | Closed | 5.00 | * |
754 | DINJCEFA1V- | Sourced-v | 25.00 | * |
755
756 I should see "Sourced-p" in "State"
757
758#LINE 21
759
760 I open tab menu "PURCHASES"
761 I click on menu "Purchase Orders"
762 I click "Edit" on line:
763 | REFERENCE | SUPPLIER |
764 | {{PO_REF_3}} | ESC |
765
766
767 I click "Analytical distribution" on line and open the window:
768 | PRODUCT CODE | PRODUCT DESCRIPTION |
769 | ADAPKBDAUSB | KEYBOARD, AZERTY, external, USB |
770
771 I click on "New"
772 I fill "MW120" within column "COST CENTER"
773 I validate the line
774 I click on "Save" and close the window
775
776
777 I click "Edit" on line and open the window:
778 | PRODUCT CODE | PRODUCT DESCRIPTION |
779 | ADAPKBDAUSB | KEYBOARD, AZERTY, external, USB |
780
781 I fill "Delivery Confirmed Date" with "05/Oct/2017"
782 I click on "Save & Close" and close the window
783
784
785 I click "Confirm" on line:
786 | PRODUCT CODE | PRODUCT DESCRIPTION |
787 | ADAPKBDAUSB | KEYBOARD, AZERTY, external, USB |
788
789
790 I open tab menu "ORDERS"
791 I click on menu "Field Orders"
792 I click "Edit" on line:
793 | ORDER REFERENCE |
794 | *{{FO_REFERENCE}}|
795
796 I should see in the main table the following data:
797 | PRODUCT CODE | STATE | QTY | SUBTOTAL |
798 | ADAPCABL1S- | Closed | 50.00 | 1,100.00 |
799 | ADAPCABL2S- | Confirmed | * | 120.00 |
800 | ADAPCART02- | Confirmed | 50.00 | * |
801 | DINJCEFA1V- | Closed | 5.00 | * |
802 | DINJCEFA1V- | Sourced-v | 25.00 | * |
803 | ADAPKBDAUSB | Confirmed | 25.00 | * |
804
805 I should see "Sourced-p" in "State"
806
807#LINE 22
808
809 I open tab menu "WAREHOUSE"
810 I open accordion menu "Warehouse Management"
811 I click on menu "Incoming Shipments"
812
813 I click "Edit" on line:
814 | ORIGIN |
815 | *{{PO_REF_3}}* |
816
817
818 I click on "Process" and open the window
819 I click "Edit" on line:
820 | PRODUCT |
821 | [ADAPKBDAUSB] KEYBOARD, AZERTY, external, USB |
822
823 I fill "10.000" within column "QUANTITY TO PROCESS"
824 I validate the line
825
826 I click on "Process" and close the window if necessary
827 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
828 I click on "Close" and close the window if a window is open
829
830 I should see in the main table the following data:
831 | PRODUCT | QUANTITY |
832 | [ADAPKBDAUSB] KEYBOARD, AZERTY, external, USB | 15.000 |
833
834#LINE 23
835
836 I open tab menu "PURCHASES"
837 I click on menu "Purchase Orders"
838 I click "Edit" on line:
839 | REFERENCE | SUPPLIER |
840 | {{PO_REF_3}} | ESC |
841
842
843 I click "Edit" on line and open the window:
844 | PRODUCT CODE | PRODUCT DESCRIPTION |
845 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial |
846
847 I fill "Delivery Confirmed Date" with "05/Oct/2017"
848 I click on "Save & Close" and close the window
849
850 I click "Confirm" on line:
851 | PRODUCT CODE | PRODUCT DESCRIPTION |
852 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial |
853
854
855#LINE 24
856
857 I open tab menu "WAREHOUSE"
858 I open accordion menu "Warehouse Management"
859 I click on menu "Incoming Shipments"
860
861 I click "Edit" on line:
862 | PURCHASE ORDER |
863 | *{{PO_REF_3}}* |
864
865
866 I should see in the main table the following data:
867 | PRODUCT | QUANTITY |
868 | [ADAPKBDAUSB] KEYBOARD, AZERTY, external, USB | 15.000 |
869 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | 25.000 |
870
871
872 I click on "Process" and open the window
873 I click on "Copy all"
874 I click "Edit" on line:
875 | PRODUCT |
876 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial |
877
878 I fill "batch{{ID}}" within column "Batch Number" and open the window
879 I click on "New"
880 I fill "Expiry Date" with "20/May/2020"
881 I click on "Save" and close the window
882 I validate the line
883
884
885 I click on "Process" and close the window if necessary
886 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
887 I click on "Close" and close the window if a window is open
888
889#LINE 25 & 26
890
891 I open accordion menu "Warehouse Management"
892 I click on menu "Deliveries|Picking"
893
894
895 I click "Edit" on line:
896
897 | ORIGIN | LINES STATE |
898 | {{FO_REFERENCE}} | *vailable* |
899
900 I click on "Create Picking..." and open the window
901 I click on "Copy all"
902 I click on "Create Picking" and close the window
903
904 I click on "Validate Picking..." and open the window
905 I click on "Copy all"
906 I click on "Validate Picking" and close the window
907
908 I click on "Pack..." and open the window
909 I click on "Next"
910 I click "Edit" on line:
911 | FROM P. |
912 | 1 |
913
914 I fill "2" within column "Weight P.P [KG]"
915 I validate the line
916
917 I click on "Process" and close the window
918
919 I click on "Create Shipment..." and open the window
920 I click on "Create Shipment" and close the window
921
922 I click on "Validate"
923
924 I store "Reference" in "SHIPREF_2"
925
926
927
928 I open tab menu "ORDERS"
929 I click on menu "Field Orders"
930 I click "Edit" on line:
931 | ORDER REFERENCE |
932 | *{{FO_REFERENCE}}|
933
934 I should see in the main table the following data:
935 | PRODUCT CODE | STATE | QTY | SUBTOTAL |
936 | ADAPCABL1S- | Closed | 50.00 | 1,100.00 |
937 | ADAPCABL2S- | Confirmed | * | 120.00 |
938 | ADAPCART02- | Confirmed | 50.00 | * |
939 | DINJCEFA1V- | Closed | 5.00 | * |
940 | DINJCEFA1V- | Closed | 25.00 | * |
941 | ADAPKBDAUSB | Closed | 25.00 | * |
942
943 I should see "Confirmed-p" in "State"
944
945
946#LINE 27
947
948 I open tab menu "WAREHOUSE"
949 I open accordion menu "Warehouse Management"
950 I click on menu "Incoming Shipments"
951
952 I click "Edit" on line:
953 | PURCHASE ORDER |
954 | *{{PO_REF_2}}* |
955
956 I click on "Process" and open the window
957 I click "Edit" on line:
958 | PRODUCT |
959 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male |
960
961 I fill "10.000" within column "QUANTITY TO PROCESS"
962 I validate the line
963
964 I click on "Process" and close the window if necessary
965 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
966 I click on "Close" and close the window if a window is open
967
968 I should see in the main table the following data:
969 | PRODUCT | QUANTITY |
970 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | 50.000 |
971
972
973 I open tab menu "PURCHASES"
974 I click on menu "Purchase Orders"
975 I click "Edit" on line:
976 | REFERENCE |
977 | {{PO_REF_2}} |
978
979
980 I should see in the main table the following data:
981 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
982 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Closed |
983 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Confirmed |
984
985#LINE 28
986
987 I open tab menu "WAREHOUSE"
988 I open accordion menu "Warehouse Management"
989 I click on menu "Deliveries|Picking"
990
991 I click "Edit" on line:
992 | ORIGIN | LINES STATE |
993 | {{FO_REFERENCE}} | *vailable* |
994
995 I Click on "Convert to Simple Out"
996 I click on "Process" and open the window
997 I Click on "Copy all"
998
999 I click on "Process" and close the window if necessary
1000 I click on "Close" and close the window if a window is open
1001
1002
1003 I open tab menu "ORDERS"
1004 I click on menu "Field Orders"
1005 I click "Edit" on line:
1006 | ORDER REFERENCE |
1007 | *{{FO_REFERENCE}}|
1008
1009 I should see in the main table the following data:
1010 | PRODUCT CODE | STATE | QTY | SUBTOTAL |
1011 | ADAPCABL1S- | Closed | 50.00 | 1,100.00 |
1012 | ADAPCABL2S- | Closed | * | 120.00 |
1013 | ADAPCART02- | Confirmed | 50.00 | * |
1014 | DINJCEFA1V- | Closed | 5.00 | * |
1015 | DINJCEFA1V- | Closed | 25.00 | * |
1016 | ADAPKBDAUSB | Closed | 25.00 | * |
1017
1018 I should see "Confirmed-p" in "State"
1019
1020#LINE 29
1021
1022 I open tab menu "WAREHOUSE"
1023 I open accordion menu "Warehouse Management"
1024 I click on menu "Incoming Shipments"
1025
1026 I click "Edit" on line:
1027 | PURCHASE ORDER |
1028 | *{{PO_REF_2}}* |
1029
1030 I click on "Process" and open the window
1031 I click on "Copy all"
1032
1033 I click on "Process" and close the window if necessary
1034 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
1035 I click on "Close" and close the window if a window is open
1036
1037
1038 I open tab menu "WAREHOUSE"
1039 I open accordion menu "Warehouse Management"
1040
1041 I click on menu "Deliveries|Delivery Orders"
1042
1043 I click "Edit" on line:
1044 | ORIGIN |
1045 | {{FO_REFERENCE}} |
1046
1047 I should see in the main table the following data:
1048 | PRODUCT | STATE |
1049 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | Available |
1050
1051 I click on "Convert to Picking Ticket"
1052
1053
1054 I click on "Create Picking..." and open the window
1055 I click on "Copy all"
1056 I click on "Create Picking" and close the window
1057 I click on "Validate Picking..." and open the window
1058 I click on "Copy all"
1059 I click on "Validate Picking" and close the window
1060
1061 I click on "Pack..." and open the window
1062 I click on "Next"
1063 I click "Edit" on line:
1064 | FROM P. |
1065 | 1 |
1066
1067 I fill "2" within column "Weight P.P [KG]"
1068 I validate the line
1069
1070 I click on "Process" and close the window
1071
1072 I click on "Create Shipment..." and open the window
1073 I click on "Create Shipment" and close the window
1074
1075 I click on "Validate"
1076
1077 I store "Reference" in "SHIPREF_3"
1078
1079 I open tab menu "ORDERS"
1080 I click on menu "Field Orders"
1081 I click "Edit" on line:
1082 | ORDER REFERENCE |
1083 | *{{FO_REFERENCE}}|
1084
1085 I should see in the main table the following data:
1086 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QTY | SUBTOTAL |
1087 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed | 50.00 | 1,100.00 |
1088 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Closed | * | 120.00 |
1089 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Closed | 50.00 | * |
1090 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Closed | 5.00 | * |
1091 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Closed | 25.00 | * |
1092 | ADAPKBDAUSB | KEYBOARD, AZERTY, external, USB | Closed | 25.00 | * |
1093
1094 I should see "Closed" in "State"
1095
1096
1097 #Additional sync checks
1098 ####################
1099 ## SYNCHRONIZATION
1100 ###################
1101 I synchronize "HQ1C1"
1102 I log out
1103 I synchronize "HQ1C1P1"
1104 I log into instance "HQ1C1P1"
1105
1106 I open tab menu "PURCHASES"
1107 I click on menu "Purchase Orders"
1108
1109 I click "Edit" on line:
1110 | REFERENCE |
1111 | {{PO_REF_P1}} |
1112
1113 I should see in the main table the following data:
1114 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY | SUBTOTAL |
1115 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Confirmed | 50.00 | 1,100.00 |
1116 | ADAPCABL2S- | (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Confirmed | * | 120.00 |
1117 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Confirmed | 50.00 | * |
1118 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Confirmed | 5.00 | * |
1119 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Confirmed | 25.00 | * |
1120 | ADAPKBDAUSB | KEYBOARD, AZERTY, external, USB | Confirmed | 25.00 | * |
1121
1122
1123 I should see "Confirmed" in "Order State"
1124
1125
1126
1127 I open tab menu "WAREHOUSE"
1128 I open accordion menu "Warehouse Management"
1129 I click on menu "Incoming Shipments"
1130 I fill "Origin" with "{{PO_REF_P1}}"
1131 I click on "Search"
1132
1133 I should see in the main table the following data:
1134 | PURCHASE ORDER | STATE |
1135 | *{{PO_REF_P1}}* | Available Shipped |
1136 | *{{PO_REF_P1}}* | Available Shipped |
1137 | *{{PO_REF_P1}}* | Available Shipped |
1138# | *{{PO_REF_P1}}* | Available Shipped |
0\ No newline at end of file1139\ No newline at end of file
11140
=== added file 'bin/addons/unifield_tests/testfield/meta_features/tc1.meta_feature'
--- bin/addons/unifield_tests/testfield/meta_features/tc1.meta_feature 1970-01-01 00:00:00 +0000
+++ bin/addons/unifield_tests/testfield/meta_features/tc1.meta_feature 2018-01-17 15:53:07 +0000
@@ -0,0 +1,1666 @@
1Feature: SSL Complete Supply flow from Project IR to Ext CU via FO (with split)
2
3@supply @irfoextcu @SSL
4Scenario: SSL Complete Supply flow from Project IR to Ext CU via FO (with split)
5
6
7#PARAMETRIZATION:
8# HQ1C1P1: need to have Ext CU Sara as external Consumption Unit
9# HQ1C1P1: need to have 100000 quantity of ADAPCABL2S- in LOG
10# HQ1C1: need to have 100000 quantity of ADAPCABL1S- in LOG
11
12
13 ###################################################################
14 ## CREATE AN IR IN HQ1C1P1 (reference in IR_REFERENCE)
15 ###################################################################
16
17#LINE 2
18 I log into instance "HQ1C1P1"
19 I open tab menu "ORDERS"
20 I click on menu "Internal Requests"
21 I click on "New"
22 I fill "Requestor" with "LogCoo"
23 I fill "Location Requestor" with "Ext CU Sara"
24 I fill "Requested date" with "28/May/2016"
25
26 # Add multiple products at the same time
27 I click on "Add multiple lines" and open the window
28 I click on "Add" and open the window
29 I fill "Code" with "ADAP"
30 I click on "Search"
31 I click "checkbox" on line:
32 | CODE |
33 | ADAPCABL1S- |
34 | ADAPCABL2S- |
35 | ADAPCART02- |
36
37
38 I click on "Select" and close the window
39 I click "Edit" on line:
40 | CODE |
41 | ADAPCABL1S- |
42 I fill "10" within column "QTY"
43 I validate the line
44 I click "Edit" on line:
45 | CODE |
46 | ADAPCABL2S- |
47 I fill "10" within column "QTY"
48 I validate the line
49 I click "Edit" on line:
50 | CODE |
51 | ADAPCART02- |
52 I fill "10" within column "QTY"
53 I validate the line
54
55 I click on "Add products" and close the window
56
57
58
59 # Add products line by line
60 I click on "New"
61 I fill "[ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify)" within column "Product"
62 I fill "30.00" within column "Quantity (UoM)"
63 I validate the line
64
65 I fill "[DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial" within column "Product"
66 I fill "30.00" within column "Quantity (UoM)"
67 I validate the line
68
69 I fill "[DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab." within column "Product"
70 I fill "30.00" within column "Quantity (UoM)"
71 I validate the line
72
73 I store "Order Reference" in "IR_REFERENCE"
74
75#LINE 3
76
77 I click "Validate" on line:
78 | PRODUCT |
79 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) |
80
81 I click "Validate" on line:
82 | PRODUCT |
83 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING |
84
85 I should see in the main table the following data:
86 | PRODUCT | STATE |
87 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Validated |
88 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Draft |
89 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | Validated |
90 | [ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) | Draft |
91 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | Draft |
92 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Draft |
93
94 I should see "Draft-p" in "Order State"
95
96#LINE 4
97
98 I click on menu "Orders Sourcing Tool"
99 I fill "Order" with "{{IR_REFERENCE}}"
100 I click on "Search"
101
102 I tick all the lines
103 I click "Source lines" in the side panel and open the window
104
105 I fill "Supplier" with "HQ1C1" and open the window
106 I click "option" on line and close the window:
107 | NAME |
108 | *HQ1C1 |
109 I click on "Save & source" and close the window
110
111 I open tab menu "ORDERS"
112 I click on menu "Internal Requests"
113 I fill "ORDER REFERENCE" with "{{IR_REFERENCE}}"
114
115 I click "Edit" on line:
116 | ORDER REFERENCE |
117 | *{{IR_REFERENCE}}* |
118
119 I should see in the main table the following data:
120 | PRODUCT | STATE |
121 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Sourced |
122 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Draft |
123 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | Sourced |
124
125 I should see "Draft-p" in "Order State"
126
127 I open tab menu "PURCHASES"
128 I click on menu "Purchase Orders"
129 I toggle on "DRAFT"
130
131 I click "Search" until I see:
132 | SOURCE DOCUMENT |
133 | *{{IR_REFERENCE}}* |
134 I click "Edit" on line:
135 | SOURCE DOCUMENT |
136 | *{{IR_REFERENCE}}* |
137
138 I should see in the main table the following data:
139 | PRODUCT CODE | PRODUCT DESCRIPTION |STATE |
140 | ADAPCABL1S- |(computer) CABLE, SERIAL interface for two PC (fem/fem) | Draft |
141 | ADAPCART02- |(printer Laserwriter ) CARTRIDGE INKING | Draft |
142
143 I should see "Draft" in "Order State"
144 I store "Order Reference" in "PO_REF_COO_1"
145
146#LINE 5
147
148 I open tab menu "ORDERS"
149 I click on menu "Internal Requests"
150 I fill "ORDER REFERENCE" with "{{IR_REFERENCE}}"
151 I click "Search" until I see:
152 | ORDER REFERENCE |
153 | *{{IR_REFERENCE}}* |
154 I click "Edit" on line:
155 | ORDER REFERENCE |
156 | *{{IR_REFERENCE}}* |
157 I click on "Validate Lines"
158
159 I should see in the main table the following data:
160 | PRODUCT | STATE |
161 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Sourced |
162 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Validated |
163 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | Sourced |
164 | [ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) | Validated |
165 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | Validated |
166 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Validated |
167
168 I should see "Validated-p" in "Order State"
169
170#LINE 6
171
172 I click on menu "Orders Sourcing Tool"
173 I fill "Order" with "{{IR_REFERENCE}}"
174 I click on "Search"
175 I click "Edit" on line:
176 | PRODUCT |
177 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male |
178 I fill "from Stock" within column "PROC. METHOD"
179 I validate the line
180 I click "Source Line" on line:
181 | PRODUCT |
182 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male |
183
184
185 I open tab menu "ORDERS"
186 I click on menu "Internal Requests"
187 I click "Edit" on line:
188 | ORDER REFERENCE |
189 | *{{IR_REFERENCE}}* |
190
191 I should see in the main table the following data:
192 | PRODUCT | STATE |
193 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Sourced |
194 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Confirmed |
195
196 I open tab menu "WAREHOUSE"
197 I open accordion menu "Warehouse Management"
198 I click on menu "Deliveries|Delivery Orders"
199
200 I click "Edit" on line:
201 | ORIGIN |
202 | {{IR_REFERENCE}} |
203
204 I should see in the main table the following data:
205 | PRODUCT | State |
206 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Available |
207
208#LINE 7
209
210 I open tab menu "ORDERS"
211 I click on menu "Orders Sourcing Tool"
212 I fill "Order" with "{{IR_REFERENCE}}"
213 I click on "Search"
214 I click "Edit" on line:
215 | PRODUCT |
216 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial |
217 I fill "Local Market" within column "SUPPLIER"
218 I validate the line
219 I click "Source Line" on line:
220 | PRODUCT |
221 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial |
222
223
224 I click "Edit" on line:
225 | PRODUCT |
226 |[ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) |
227 I fill "Local Market" within column "SUPPLIER"
228 I validate the line
229 I click "Source Line" on line:
230 | PRODUCT |
231 | [ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) |
232
233 I open tab menu "ORDERS"
234 I click on menu "Internal Requests"
235 I click "Edit" on line:
236 | ORDER REFERENCE |
237 | *{{IR_REFERENCE}}* |
238
239 I should see in the main table the following data:
240 | PRODUCT | STATE |
241 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | Sourced |
242 | [ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) | Sourced |
243
244 I should see "Validated-p" in "Order State"
245
246#LINE 8
247
248 I open tab menu "PURCHASES"
249 I click on menu "Purchase Orders"
250 I toggle on "DRAFT"
251
252 I click "Edit" on line:
253 | REFERENCE |
254 | *{{PO_REF_COO_1}}* |
255
256 I click "Analytical distribution" on line and open the window:
257 | PRODUCT CODE | PRODUCT DESCRIPTION |
258 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) |
259 I click on "New"
260 I fill "MW120" within column "COST CENTER"
261 I validate the line
262 I click on "Save" and close the window
263
264 I click "Edit" on line and open the window:
265 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
266 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Draft |
267
268 I fill "Quantity" with "25.00"
269 I fill "Unit Price" with "20.00"
270 I click on "Save & close" and close the window
271
272 I click "Analytical distribution" on line and open the window:
273 | PRODUCT CODE|
274 | ADAPCART02- |
275 I click on "New"
276 I fill "MW120" within column "COST CENTER"
277 I validate the line
278 I click on "Save" and close the window
279
280 I click "Validate" on line:
281 | PRODUCT CODE |PRODUCT DESCRIPTION | STATE |
282 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Draft |
283
284 I should see in the main table the following data:
285 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY | SUBTOTAL |
286 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Validated | 25.00 | 500.00 |
287 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Draft | 10.00 | * |
288
289 I should see "Draft-p" in "Order State"
290
291#LINE 9
292
293 I click on menu "Purchase Orders"
294 I toggle on "DRAFT"
295 I click "Edit" on line:
296 | SOURCE DOCUMENT | SUPPLIER |
297 | *{{IR_REFERENCE}}* | Local Market |
298
299 I click on "Analytical Distribution" and open the window
300 I click on "New"
301 I fill "SUP" within column "DESTINATION"
302 I fill "MW120" within column "COST CENTER"
303 I validate the line
304 I click on "Save" and close the window
305
306 I click on "Validate lines"
307
308 I should see in the main table the following data:
309 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
310 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Validated |
311 | ADAPCOLAPOW | (laptop computer) AC POWER ADAPTOR (model to specify) | Validated |
312
313 I should see "Validated" in "Order State"
314
315 I open tab menu "ORDERS"
316 I click on menu "Internal Requests"
317 I click "Edit" on line:
318 | ORDER REFERENCE |
319 | *{{IR_REFERENCE}}* |
320
321 I should see in the main table the following data:
322 | PRODUCT | STATE | QUANTITY (UOM) | UNIT PRICE |
323 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Sourced-v | 25.00 | 20.00 |
324 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Confirmed | 10.00 | * |
325 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | Sourced | 10.00 | * |
326 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | Sourced-v | 30.00 | * |
327 | [ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) | Sourced-v | 30.00 | * |
328
329#LINE 10
330
331 I open tab menu "PURCHASES"
332 I click on menu "Purchase Orders"
333 I click "Edit" on line:
334 | SOURCE DOCUMENT | SUPPLIER |
335 | *{{IR_REFERENCE}}* | Local Market |
336
337 I open tab "Delivery"
338 I fill "Delivery Confirmed Date" with "28/May/2016"
339
340 I click on "Apply to all lines" and open the window
341 I click on "Yes" and close the window
342
343 I click on "Confirm lines"
344 I store "Order Reference" in "PO_REF_LOCM"
345
346#LINE 11
347
348 I click on menu "Purchase Orders"
349 I click "Edit" on line:
350 | REFERENCE |
351 | *{{PO_REF_COO_1}}* |
352
353 I click "Validate" on line:
354 | PRODUCT CODE |PRODUCT DESCRIPTION | STATE |
355 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Draft |
356
357 I should see in the main table the following data:
358 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
359 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Validated |
360 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Validated |
361
362 I should see "Validated" in "Order State"
363
364 I open tab menu "ORDERS"
365 I click on menu "Internal Requests"
366 I click "Edit" on line:
367 | ORDER REFERENCE |
368 | *{{IR_REFERENCE}}* |
369
370 I should see in the main table the following data:
371 | PRODUCT | STATE |
372 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | Sourced-v |
373 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | Confirmed |
374 | [ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) | Confirmed |
375
376 I should see "Validated-p" in "Order State"
377
378#LINE 12 &13
379 ####################
380 ## SYNCHRONIZATION
381 ###################
382
383 I synchronize "HQ1C1P1"
384 I log out
385 I synchronize "HQ1C1"
386 I log into instance "HQ1C1"
387
388
389 I open tab menu "ORDERS"
390 I click on menu "Field Orders"
391 I toggle on "Draft"
392
393 I click "Edit" on line:
394 | CUSTOMER REFERENCE |
395 | *{{PO_REF_COO_1}} |
396
397#LINE 14
398
399 I click "Validate" on line:
400 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QTY | SUBTOTAL |
401 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Draft | 25.00 | 500.00 |
402
403 I should see in the main table the following data:
404 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
405 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Validated |
406 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Draft |
407
408 I should see "Draft-p" in "State"
409
410 I store "Order Reference" in "FO_REFERENCE"
411
412
413#LINE 15
414
415 I click on menu "Orders Sourcing Tool"
416 I fill "Order" with "{{FO_REFERENCE}}"
417 I click on "Search"
418
419 I click "Edit" on line:
420 | PRODUCT |
421 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem)|
422 I fill "from Stock" within column "PROC. METHOD"
423 I validate the line
424 I click "Source Line" on line:
425 | PRODUCT |
426 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem)|
427
428 I click on menu "Field Orders"
429
430 I click "Edit" on line:
431 | CUSTOMER REFERENCE |
432 | *{{PO_REF_COO_1}} |
433
434 I should see in the main table the following data:
435 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
436 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Confirmed |
437 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Draft |
438
439#LINE 16 & 17
440 ####################
441 ## SYNCHRONIZATION
442 ###################
443
444 I synchronize "HQ1C1"
445 I log out
446 I synchronize "HQ1C1P1"
447 I log into instance "HQ1C1P1"
448
449
450 I open tab menu "ORDERS"
451 I click on menu "Internal Requests"
452 I fill "ORDER REFERENCE" with "{{IR_REFERENCE}}"
453 I click "Search" until I see:
454 | ORDER REFERENCE |
455 | *{{IR_REFERENCE}}* |
456 I click "Edit" on line:
457 | ORDER REFERENCE |
458 | *{{IR_REFERENCE}}* |
459
460 I should see in the main table the following data:
461 | PRODUCT | STATE |
462 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Confirmed |
463
464 I open tab menu "PURCHASES"
465 I click on menu "Purchase Orders"
466 I fill "REFERENCE" with "{{PO_REF_COO_1}}"
467
468 I click "Search" until I see:
469 | REFERENCE |
470 | {{PO_REF_COO_1}} |
471 I click "Edit" on line:
472 | REFERENCE |
473 | {{PO_REF_COO_1}} |
474
475 I should see in the main table the following data:
476 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
477 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Confirmed |
478 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Validated |
479
480
481 I should see "Validated-p" in "Order State"
482
483
484 I open tab menu "WAREHOUSE"
485 I open accordion menu "Warehouse Management"
486 I click on menu "Incoming Shipments"
487
488 I click "Edit" on line:
489 | PURCHASE ORDER |
490 | {{PO_REF_COO_1}} |
491
492 I should see in the main table the following data:
493 | PRODUCT | STATE |
494 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Available |
495
496 I should see "Available" in "State"
497
498
499
500 I log into instance "HQ1C1"
501
502 I open tab menu "WAREHOUSE"
503 I open accordion menu "Warehouse Management"
504 I click on menu "Deliveries|Picking"
505
506 I click "Search" until I see:
507 | ORIGIN |
508 | {{FO_REFERENCE}} |
509 I click "Edit" on line:
510 | ORIGIN | LINES STATE |
511 | {{FO_REFERENCE}} | *vailable* |
512
513 I should see in the main table the following data:
514 | PRODUCT | STATE |
515 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Available |
516
517#LINE 18 &19
518
519 I Click on "Convert to Simple Out"
520 I click on "Process" and open the window
521 I Click on "Copy all"
522
523 I click on "Process" and close the window if necessary
524 I click on "Close" and close the window if a window is open
525
526 I should see in the main table the following data:
527 | PRODUCT | STATE |
528 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed |
529
530 I should see "Closed" in "State"
531
532#LINE 20
533
534 I open tab menu "ORDERS"
535 I click on menu "Field Orders"
536
537 I click "Edit" on line:
538 | ORDER REFERENCE |
539 | *{{FO_REFERENCE}} |
540
541 I should see in the main table the following data:
542 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
543 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed |
544 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Draft |
545
546 I should see "Draft-p" in "State"
547
548 I click "Edit" on line and open the window:
549 | PRODUCT CODE | PRODUCT DESCRIPTION |
550 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING |
551
552
553 I fill "Quantity (UoM)" with "50.00"
554 I fill "Unit Price" with "5.00"
555 I click on "Save & Close" and close the window
556
557 I click "Validate" on line:
558 | PRODUCT CODE | PRODUCT DESCRIPTION |
559 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING |
560
561 I should see in the main table the following data:
562 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QTY |
563 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed | 25.00 |
564 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Validated | 50.00 |
565
566 I should see "Validated-p" in "State"
567
568#LINE 21
569
570 I click on menu "Orders Sourcing Tool"
571 I fill "Order" with "{{FO_REFERENCE}}"
572 I click on "Search"
573
574 I click "Edit" on line:
575 | PRODUCT |
576 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING |
577
578 I fill "ITCompany" within column "SUPPLIER"
579 I validate the line
580 I click "Source Line" on line:
581 | PRODUCT |
582 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING |
583
584 I open tab menu "ORDERS"
585 I click on menu "Field Orders"
586
587 I click "Edit" on line:
588 | ORDER REFERENCE |
589 | *{{FO_REFERENCE}} |
590
591 I should see in the main table the following data:
592 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
593 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Sourced |
594
595 I should see "Sourced-p" in "State"
596
597#LINE 22 & 23
598 ####################
599 ## SYNCHRONIZATION
600 ###################
601
602 I synchronize "HQ1C1"
603 I synchronize "HQ1C1P1"
604 I log into instance "HQ1C1P1"
605
606 I open tab menu "ORDERS"
607 I click on menu "Internal Requests"
608 I fill "ORDER REFERENCE" with "{{IR_REFERENCE}}"
609 I click "Edit" on line:
610 | ORDER REFERENCE |
611 | *{{IR_REFERENCE}}* |
612
613 I should see in the main table the following data:
614 | PRODUCT | STATE | QUANTITY (UOM) | UNIT PRICE |
615 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | Sourced-sy | 50.00 | 5.00 |
616
617
618 I open tab menu "PURCHASES"
619 I click on menu "Purchase Orders"
620 I fill "REFERENCE" with "{{PO_REF_COO_1}}"
621
622 I click on "Search"
623
624 I click "Edit" on line:
625 | REFERENCE |
626 | {{PO_REF_COO_1}} |
627
628 I should see in the main table the following data:
629 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY | SUBTOTAL |
630 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Confirmed | 25.00 | 500.00 |
631 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Sourced-sy | 50.00 | 250.00 |
632
633 I should see "Sourced-p" in "Order State"
634
635 I open tab menu "WAREHOUSE"
636 I open accordion menu "Warehouse Management"
637 I click on menu "Incoming Shipments"
638
639 I click "Edit" on line:
640 | PURCHASE ORDER | STATE |
641 | {{PO_REF_COO_1}} | Available Shipped |
642
643 I should see in the main table the following data:
644 | PRODUCT | STATE | QUANTITY |
645 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Available | 25.000 |
646
647#LINE 24
648
649 I click on "Process" and open the window
650 I click on "Copy all"
651 I click on "Process" and close the window if necessary
652 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
653 I click on "Close" and close the window if a window is open
654
655 I should see "Closed" in "State"
656
657
658 I click on menu "Deliveries|Delivery Orders"
659
660 I click "Edit" on line:
661 | ORIGIN |
662 | {{IR_REFERENCE}} |
663
664 I should see in the main table the following data:
665 | PRODUCT | STATE |
666 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Available |
667 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Available |
668 | [ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) | Not Available |
669 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | Not Available |
670
671
672 I open tab menu "PURCHASES"
673 I click on menu "Purchase Orders"
674 I fill "REFERENCE" with "{{PO_REF_COO_1}}"
675
676 I click on "Search"
677
678 I click "Edit" on line:
679 | REFERENCE |
680 | *{{PO_REF_COO_1}}* |
681
682 I should see in the main table the following data:
683 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
684 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed |
685 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Sourced-sy |
686
687#LINE 25
688
689 I open tab menu "WAREHOUSE"
690 I open accordion menu "Warehouse Management"
691 I click on menu "Incoming Shipments"
692
693 I click "Edit" on line:
694 | PURCHASE ORDER |
695 | *{{PO_REF_LOCM}}* |
696
697
698 I click on "Process" and open the window
699 I click on "Copy all"
700
701 I click "Edit" on line:
702 | PRODUCT |
703 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial |
704
705 I fill "batch{{ID}}" within column "Batch Number" and open the window
706 I click on "New"
707 I fill "Expiry Date" with "20/May/2020"
708 I click on "Save" and close the window
709 I validate the line
710
711 I click on "Process" and close the window if necessary
712 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
713 I click on "Close" and close the window if a window is open
714
715
716 I should see in the main table the following data:
717 | PRODUCT | STATE |
718 | [ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) | Closed |
719 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | Closed |
720
721 I should see "Closed" in "State"
722
723 I open tab menu "PURCHASES"
724 I click on menu "Purchase Orders"
725 I fill "REFERENCE" with "{{PO_REF_LOCM}}"
726
727 I click on "Search"
728 I click "Edit" on line:
729 | REFERENCE |
730 | *{{PO_REF_LOCM}}* |
731
732 I should see in the main table the following data:
733 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
734 | ADAPCOLAPOW | (laptop computer) AC POWER ADAPTOR (model to specify) | Closed |
735 | DINJCEFA1V- | CEFAZOLIN, 1 g, (IV), powder, vial | Closed |
736
737
738 I open tab menu "WAREHOUSE"
739 I open accordion menu "Warehouse Management"
740 I click on menu "Deliveries|Delivery Orders"
741
742 I click "Edit" on line:
743 | ORIGIN |
744 | {{IR_REFERENCE}} |
745
746 I should see in the main table the following data:
747 | PRODUCT | STATE | QUANTITY |
748 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Available | 25.000 |
749 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Available | 10.000 |
750 | [ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) | Available | 30.000 |
751 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | Available | 30.000 |
752
753#LINE 26
754
755 I click on "Process" and open the window
756 I click on "Copy all"
757 I click on "Process" and close the window if necessary
758 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
759 I click on "Close" and close the window if a window is open
760
761 I should see "Closed" in "State"
762
763 I open tab menu "ORDERS"
764 I click on menu "Internal Requests"
765 I click "Edit" on line:
766 | ORDER REFERENCE |
767 | *{{IR_REFERENCE}}* |
768
769
770 I should see in the main table the following data:
771 | PRODUCT | STATE |
772 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed |
773 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Closed |
774 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | Sourced-sy |
775 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | Closed |
776 | [ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) | Closed |
777
778#LINE 27
779
780 I click on menu "Orders Sourcing Tool"
781 I fill "Order" with "{{IR_REFERENCE}}"
782 I click on "Search"
783 I click "Edit" on line:
784 | PRODUCT |
785 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. |
786
787 I fill "HQ1C1" within column "SUPPLIER" and open the window
788 I click "option" on line and close the window:
789 | NAME |
790 | HQ1C1 |
791
792 I validate the line
793 I click "Source Line" on line:
794 | PRODUCT |
795 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. |
796
797 I open tab menu "ORDERS"
798 I click on menu "Internal Requests"
799 I click "Edit" on line:
800 | ORDER REFERENCE |
801 | *{{IR_REFERENCE}}* |
802
803 I should see in the main table the following data:
804 | PRODUCT | STATE |
805 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Sourced |
806
807 I should see "Sourced-p" in "Order State"
808
809 I open tab menu "PURCHASES"
810 I click on menu "Purchase Orders"
811 I toggle on "DRAFT"
812
813 I click "Search" until I see:
814 | SOURCE DOCUMENT |
815 | *{{IR_REFERENCE}}* |
816 I click "Edit" on line:
817 | SOURCE DOCUMENT | SUPPLIER |
818 | *{{IR_REFERENCE}}* | *HQ1C1 |
819
820 I click on "Analytical Distribution" and open the window
821 I click on "New"
822 I fill "SUP" within column "DESTINATION"
823 I fill "MW120" within column "COST CENTER"
824 I validate the line
825 I click on "Save" and close the window
826
827#LINE 28
828
829 I click "Validate" on line:
830 | PRODUCT CODE | PRODUCT DESCRIPTION |STATE |
831 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Draft |
832
833 I should see "Validated" in "Order State"
834
835 I store "Order Reference" in "PO_REF_COO_2"
836
837 I open tab menu "ORDERS"
838 I click on menu "Internal Requests"
839 I click "Edit" on line:
840 | ORDER REFERENCE |
841 | *{{IR_REFERENCE}}* |
842
843 I should see in the main table the following data:
844 | PRODUCT | STATE |
845 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Sourced-v |
846
847 I should see "Sourced-p" in "Order State"
848
849#LINE 29 &30
850 ####################
851 ## SYNCHRONIZATION
852 ###################
853
854 I synchronize "HQ1C1P1"
855 I synchronize "HQ1C1"
856 I log out
857 I log into instance "HQ1C1"
858
859
860 I open tab menu "ORDERS"
861 I click on menu "Field Orders"
862 I toggle on "Draft"
863
864 I click "Edit" on line:
865 | CUSTOMER REFERENCE |
866 | *{{PO_REF_COO_2}} |
867
868#LINE 31
869
870 I click "Validate" on line:
871 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
872 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Draft |
873
874 I should see in the main table the following data:
875 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
876 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Validated |
877
878 I should see "Validated" in "State"
879 I store "Order Reference" in "FO_REFERENCE_2"
880
881#LINE 32
882
883 I click on menu "Orders Sourcing Tool"
884 I fill "Order" with "{{FO_REFERENCE_2}}"
885 I click on "Search"
886
887 I click "Split line" on line and open the window:
888 | PRODUCT |
889 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. |
890 I fill "New line quantity" with "25.00"
891 I click on "Split line" and close the window
892
893
894 I click "Edit" on line:
895 | PRODUCT | QTY |
896 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | 5.00 |
897
898 I fill "ITCompany" within column "SUPPLIER"
899 I validate the line
900 I click "Source Line" on line:
901 | PRODUCT | QTY |
902 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | 5.00 |
903
904
905 I click "Edit" on line:
906 | PRODUCT | QTY |
907 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | 25.00 |
908
909 I fill "ESC" within column "SUPPLIER"
910 I validate the line
911 I click "Source Line" on line:
912 | PRODUCT | QTY |
913 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | 25.00 |
914
915 I open tab menu "ORDERS"
916 I click on menu "Field Orders"
917
918 I click "Edit" on line:
919 | ORDER REFERENCE |
920 | *{{FO_REFERENCE_2}} |
921
922 I should see in the main table the following data:
923 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QTY |
924 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Sourced | 5.00 |
925 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Sourced | 25.00 |
926
927 I should see "Sourced" in "State"
928
929#LINE 33
930
931 I open tab menu "PURCHASES"
932 I click on menu "Purchase Orders"
933 I toggle on "DRAFT"
934
935 I click "Edit" on line:
936 | SOURCE DOCUMENT | SUPPLIER |
937 | *{{FO_REFERENCE}}* | ITCompany |
938
939 I click on "Validate lines"
940
941 I should see in the main table the following data:
942 | PRODUCT CODE | PRODUCT DESCRIPTION |STATE | Quantity | SUBTOTAL |
943 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Validated | 5.00 | * |
944 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Validated | 50.00 | 600.00 |
945
946 I store "Order Reference" in "PO_REF_EXT_COO"
947
948
949 I open tab menu "ORDERS"
950 I click on menu "Field Orders"
951 I click "Edit" on line:
952 | ORDER REFERENCE |
953 | *{{FO_REFERENCE_2}} |
954
955 I should see in the main table the following data:
956 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QTY |
957 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Sourced-v | 5.00 |
958 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Sourced | 25.00 |
959
960 I should see "Sourced-p" in "State"
961
962
963 I click on menu "Field Orders"
964
965 I click "Edit" on line:
966 | ORDER REFERENCE |
967 | *{{FO_REFERENCE}}|
968
969 I should see in the main table the following data:
970 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
971 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed |
972 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Sourced-v |
973
974 I should see "Sourced-p" in "State"
975
976#LINE 34
977
978 I open tab menu "PURCHASES"
979 I click on menu "Purchase Orders"
980
981 I click "Edit" on line:
982 | SOURCE DOCUMENT | SUPPLIER |
983 | *{{FO_REFERENCE}}* | ITCompany |
984
985
986
987 I click "Edit" on line and open the window:
988 | PRODUCT CODE | PRODUCT DESCRIPTION |
989 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING |
990 I fill "Delivery Confirmed Date" with "05/Oct/2016"
991 I click on "Save & Close" and close the window
992
993 I click "Confirm" on line:
994 | PRODUCT CODE | PRODUCT DESCRIPTION |
995 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING |
996
997 I should see in the main table the following data:
998 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
999 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Confirmed |
1000
1001 I should see "Validated-p" in "Order State"
1002
1003 I open tab menu "ORDERS"
1004 I click on menu "Field Orders"
1005 I click "Edit" on line:
1006 | ORDER REFERENCE |
1007 | *{{FO_REFERENCE}}|
1008
1009 I should see in the main table the following data:
1010 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
1011 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed |
1012 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Confirmed |
1013
1014 I should see "Confirmed-p" in "State"
1015
1016#LINE 35
1017
1018 I open tab menu "PURCHASES"
1019 I click on menu "Purchase Orders"
1020
1021 I click "Edit" on line:
1022 | SOURCE DOCUMENT | SUPPLIER |
1023 | *{{FO_REFERENCE_2}}* | ESC |
1024
1025 I fill "Date of Stock Take" with "28/Dec/2015"
1026 I click on "Update Lines" and open the window
1027 I click on "Yes" and close the window
1028
1029 I click "Validate" on line:
1030 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY |
1031 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Draft | 25.00 |
1032
1033 I store "Order Reference" in "PO_REF_ESC_COO"
1034
1035 I open tab menu "ORDERS"
1036 I click on menu "Field Orders"
1037 I click "Edit" on line:
1038 | ORDER REFERENCE |
1039 | *{{FO_REFERENCE_2}}|
1040
1041 I should see in the main table the following data:
1042 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QTY |
1043 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Sourced-v | 5.00 |
1044 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Sourced-v | 25.00 |
1045
1046 I should see "Sourced-p" in "State"
1047
1048#LINE 36
1049
1050 I open tab menu "PURCHASES"
1051 I click on menu "Purchase Orders"
1052
1053 I click "Edit" on line:
1054 | SOURCE DOCUMENT | SUPPLIER |
1055 | *{{FO_REFERENCE_2}}* | ESC |
1056
1057
1058 I click "Edit" on line and open the window:
1059 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY |
1060 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Validated | 25.00 |
1061 I fill "Delivery Confirmed Date" with "05/Oct/2016"
1062 I click on "Save & Close" and close the window
1063
1064 I click "Confirm" on line:
1065 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY |
1066 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Validated | 25.00 |
1067
1068 I open tab menu "ORDERS"
1069 I click on menu "Field Orders"
1070 I click "Edit" on line:
1071 | ORDER REFERENCE |
1072 | *{{FO_REFERENCE_2}}|
1073
1074 I should see in the main table the following data:
1075 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QTY |
1076 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Sourced-v | 5.00 |
1077 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed | 25.00 |
1078
1079 I should see "Sourced-p" in "State"
1080
1081#LINE 37 & 38
1082 ####################
1083 ## SYNCHRONIZATION
1084 ###################
1085
1086 I log out
1087 I synchronize "HQ1C1"
1088 I synchronize "HQ1C1P1"
1089 I log into instance "HQ1C1P1"
1090
1091
1092 I open tab menu "ORDERS"
1093 I click on menu "Internal Requests"
1094 I fill "ORDER REFERENCE" with "{{IR_REFERENCE}}"
1095 I click "Search" until I see:
1096 | ORDER REFERENCE |
1097 | *{{IR_REFERENCE}}* |
1098 I click "Edit" on line:
1099 | ORDER REFERENCE |
1100 | *{{IR_REFERENCE}}* |
1101
1102 I should see in the main table the following data:
1103 | PRODUCT | STATE | QUANTITY (UOM) | UNIT PRICE |
1104 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed | 25.00 | 20.00 |
1105 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male | Closed | 10.00 | * |
1106 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | Confirmed | 50.00 | 12.00 |
1107 | [ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) | Closed | 30.00 | * |
1108 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | Closed | 30.00 | * |
1109 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Sourced-sy | 5.00 | * |
1110 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed | 25.00 | * |
1111
1112 I should see "Sourced-p" in "Order State"
1113
1114 I open tab menu "PURCHASES"
1115 I click on menu "Purchase Orders"
1116 I click "Edit" on line:
1117 | REFERENCE |
1118 | *{{PO_REF_COO_1}}* |
1119
1120 I should see in the main table the following data:
1121 | PRODUCT CODE | PRODUCT DESCRIPTION |STATE |
1122 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed |
1123 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Confirmed |
1124
1125 I should see "Confirmed-p" in "Order State"
1126
1127
1128 I click on menu "Purchase Orders"
1129 I click "Edit" on line:
1130 | REFERENCE |
1131 | *{{PO_REF_COO_2}}* |
1132
1133 I should see in the main table the following data:
1134 | PRODUCT CODE | PRODUCT DESCRIPTION |STATE | QUANTITY |
1135 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Sourced-sy | 5.00 |
1136 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed | 25.00 |
1137
1138 I should see "Sourced-p" in "Order State"
1139
1140
1141 I log into instance "HQ1C1"
1142
1143 I open tab menu "PURCHASES"
1144 I click on menu "Purchase Orders"
1145
1146 I click "Edit" on line:
1147 | SOURCE DOCUMENT | SUPPLIER |
1148 | *{{FO_REFERENCE}}* | ITCompany |
1149
1150
1151 I click "Edit" on line and open the window:
1152 | PRODUCT CODE | PRODUCT DESCRIPTION |
1153 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. |
1154 I fill "Delivery Confirmed Date" with "05/Oct/2016"
1155 I click on "Save & Close" and close the window
1156
1157 I click "Confirm" on line:
1158 | PRODUCT CODE | PRODUCT DESCRIPTION |
1159 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. |
1160
1161 I should see in the main table the following data:
1162 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
1163 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Confirmed |
1164 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed |
1165
1166 I should see "Confirmed" in "Order State"
1167
1168
1169 I open tab menu "ORDERS"
1170 I click on menu "Field Orders"
1171 I click "Edit" on line:
1172 | ORDER REFERENCE |
1173 | *{{FO_REFERENCE_2}}|
1174
1175 I should see in the main table the following data:
1176 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QTY |
1177 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed | 5.00 |
1178 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed | 25.00 |
1179
1180 I should see "Confirmed" in "State"
1181
1182#LINE 40
1183
1184 I open tab menu "WAREHOUSE"
1185 I open accordion menu "Warehouse Management"
1186 I click on menu "Incoming Shipments"
1187
1188 I click "Edit" on line:
1189 | PURCHASE ORDER |
1190 | *{{PO_REF_EXT_COO}}* |
1191
1192
1193 I click on "Process" and open the window
1194 I click "Edit" on line:
1195 | PRODUCT |
1196 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING |
1197
1198 I fill "50.000" within column "QUANTITY TO PROCESS"
1199 I validate the line
1200
1201
1202 I click on "Process" and close the window if necessary
1203 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
1204 I click on "Close" and close the window if a window is open
1205
1206 I open tab menu "PURCHASES"
1207 I click on menu "Purchase Orders"
1208
1209 I click "Edit" on line:
1210 | SOURCE DOCUMENT | SUPPLIER |
1211 | *{{FO_REFERENCE}}* | ITCompany |
1212
1213 I should see in the main table the following data:
1214 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
1215 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Closed |
1216
1217 I should see "Confirmed-p" in "Order State"
1218
1219#LINE 41
1220
1221 I open tab menu "WAREHOUSE"
1222 I open accordion menu "Warehouse Management"
1223 I click on menu "Deliveries|Picking"
1224
1225
1226 I click "Edit" on line:
1227
1228 | ORIGIN | LINES STATE |
1229 | {{FO_REFERENCE}} | *vailable* |
1230
1231 I click on "Create Picking..." and open the window
1232 I click on "Copy all"
1233 I click on "Create Picking" and close the window
1234
1235 I click on "Validate Picking..." and open the window
1236 I click on "Copy all"
1237 I click on "Validate Picking" and close the window
1238
1239 I click on "Pack..." and open the window
1240 I click on "Next"
1241 I click "Edit" on line:
1242 | FROM P. |
1243 | 1 |
1244
1245 I fill "2" within column "Weight P.P [KG]"
1246 I validate the line
1247
1248 I click on "Process" and close the window
1249
1250 I click on "Create Shipment..." and open the window
1251 I click on "Create Shipment" and close the window
1252
1253 I click on "Validate"
1254
1255 I store "Reference" in "SHIPREF_1"
1256
1257
1258 I open tab menu "ORDERS"
1259 I click on menu "Field Orders"
1260 I click "Edit" on line:
1261 | ORDER REFERENCE |
1262 | *{{FO_REFERENCE}}|
1263
1264 I should see in the main table the following data:
1265 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
1266 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed |
1267 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Closed |
1268
1269 I should see "Closed" in "State"
1270
1271#LINE 42
1272
1273 I open tab menu "WAREHOUSE"
1274 I open accordion menu "Warehouse Management"
1275 I click on menu "Incoming Shipments"
1276
1277 I click "Edit" on line:
1278
1279 | PURCHASE ORDER |
1280 | *{{PO_REF_ESC_COO}}* |
1281
1282 I click on "Process" and open the window
1283 I click on "Copy all"
1284
1285 I click "Edit" on line:
1286 | PRODUCT |
1287 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. |
1288
1289
1290 I fill "20/May/2022" within column "EXPIRY DATE"
1291 I validate the line
1292
1293 I click on "Process" and close the window if necessary
1294 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
1295 I click on "Close" and close the window if a window is open
1296
1297
1298 I open tab menu "PURCHASES"
1299 I click on menu "Purchase Orders"
1300 I click "Edit" on line:
1301 | REFERENCE |
1302 | *{{PO_REF_ESC_COO}}* |
1303
1304 I should see in the main table the following data:
1305 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
1306 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Closed |
1307
1308 I should see "Closed" in "Order State"
1309
1310#LINE 43
1311
1312 I open tab menu "WAREHOUSE"
1313 I open accordion menu "Warehouse Management"
1314 I click on menu "Deliveries|Picking"
1315
1316
1317 I click "Edit" on line:
1318
1319 | ORIGIN | LINES STATE |
1320 | {{FO_REFERENCE_2}} | *vailable* |
1321
1322 I click on "Create Picking..." and open the window
1323 I click on "Copy all"
1324 I click on "Create Picking" and close the window
1325
1326 I click on "Validate Picking..." and open the window
1327 I click on "Copy all"
1328 I click on "Validate Picking" and close the window
1329
1330 I click on "Pack..." and open the window
1331 I click on "Next"
1332 I click "Edit" on line:
1333 | FROM P. |
1334 | 1 |
1335
1336 I fill "2" within column "Weight P.P [KG]"
1337 I validate the line
1338
1339 I click on "Process" and close the window
1340
1341 I click on "Create Shipment..." and open the window
1342 I click on "Create Shipment" and close the window
1343
1344 I click on "Validate"
1345
1346 I store "Reference" in "SHIPREF_2"
1347
1348
1349#LINE 44 & 45
1350 ####################
1351 ## SYNCHRONIZATION
1352 ###################
1353
1354
1355 I log out
1356 I synchronize "HQ1C1"
1357 I synchronize "HQ1C1P1"
1358 I log into instance "HQ1C1P1"
1359
1360
1361 I open tab menu "ORDERS"
1362 I click on menu "Internal Requests"
1363 I fill "ORDER REFERENCE" with "{{IR_REFERENCE}}"
1364 I click "Search" until I see:
1365 | ORDER REFERENCE |
1366 | *{{IR_REFERENCE}}* |
1367 I click "Edit" on line:
1368 | ORDER REFERENCE |
1369 | *{{IR_REFERENCE}}* |
1370
1371 I should see in the main table the following data:
1372 | PRODUCT | STATE | QUANTITY (UOM) |
1373 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed | 5.00 |
1374 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed | 25.00 |
1375
1376 I should see "Confirmed-p" in "Order State"
1377
1378
1379 I open tab menu "PURCHASES"
1380 I click on menu "Purchase Orders"
1381
1382 I click "Edit" on line:
1383 | REFERENCE |
1384 | *{{PO_REF_COO_2}}* |
1385
1386 I should see in the main table the following data:
1387 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY |
1388 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed | 5.00 |
1389 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed | 25.00 |
1390
1391 I should see "Confirmed" in "Order State"
1392
1393 I open tab menu "WAREHOUSE"
1394 I open accordion menu "Warehouse Management"
1395 I click on menu "Incoming Shipments"
1396
1397 I click "Edit" on line:
1398 | PURCHASE ORDER | STATE |
1399 | *{{PO_REF_COO_1}}* | Available Shipped |
1400
1401#LINE 46
1402
1403 I click on "Process" and open the window
1404 I click on "Copy all"
1405 I click on "Process" and close the window if necessary
1406 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
1407 I click on "Close" and close the window if a window is open
1408
1409 I open tab menu "PURCHASES"
1410 I click on menu "Purchase Orders"
1411
1412 I click "Edit" on line:
1413 | REFERENCE |
1414 | *{{PO_REF_COO_1}}* |
1415
1416 I should see in the main table the following data:
1417 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE |
1418 | ADAPCABL1S- | (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed |
1419 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Closed |
1420
1421 I should see "Closed" in "Order State"
1422
1423#LINE 47
1424
1425 I open tab menu "WAREHOUSE"
1426 I open accordion menu "Warehouse Management"
1427 I click on menu "Incoming Shipments"
1428
1429 I click "Edit" on line:
1430 | PURCHASE ORDER | STATE |
1431 | *{{PO_REF_COO_2}}* | Available Shipped |
1432
1433 I click on "Process" and open the window
1434 I click on "Copy all"
1435 I click on "Process" and close the window if necessary
1436 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
1437 I click on "Close" and close the window if a window is open
1438
1439 I open tab menu "PURCHASES"
1440 I click on menu "Purchase Orders"
1441
1442 I click "Edit" on line:
1443 | REFERENCE |
1444 | *{{PO_REF_COO_2}}* |
1445
1446 I should see in the main table the following data:
1447 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY |
1448 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed | 5.00 |
1449 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Closed | 25.00 |
1450
1451 I should see "Confirmed-p" in "Order State"
1452
1453#LINE 48
1454
1455 I open tab menu "WAREHOUSE"
1456 I open accordion menu "Warehouse Management"
1457 I click on menu "Deliveries|Delivery Orders"
1458
1459 I click "Edit" on line:
1460 | ORIGIN |
1461 | {{IR_REFERENCE}} |
1462
1463 I should see in the main table the following data:
1464 | PRODUCT | Quantity | State |
1465 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | 50.000 | Available |
1466 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | 5.000 | Not Available |
1467 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | 25.000 | Available |
1468
1469 I click on "Process" and open the window
1470 I click on "Copy all"
1471 I click on "Process" and close the window if necessary
1472 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
1473 I click on "Close" and close the window if a window is open
1474
1475 I open tab menu "ORDERS"
1476 I click on menu "Internal Requests"
1477 I click "Edit" on line:
1478 | ORDER REFERENCE |
1479 | *{{IR_REFERENCE}}* |
1480
1481 I should see in the main table the following data:
1482 | PRODUCT | STATE | QUANTITY (UOM) |
1483 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | Closed | 50.00 |
1484 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed | 5.00 |
1485 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Closed | 25.00 |
1486
1487
1488#LINE 49 & 50
1489 ####################
1490 ## SYNCHRONIZATION
1491 ###################
1492
1493 I synchronize "HQ1C1P1"
1494 I log out
1495 I synchronize "HQ1C1"
1496 I log into instance "HQ1C1"
1497
1498 I open tab menu "ORDERS"
1499 I click on menu "Field Orders"
1500 I click "Edit" on line:
1501 | ORDER REFERENCE |
1502 | *{{FO_REFERENCE_2}}|
1503
1504 I should see in the main table the following data:
1505 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QTY |
1506 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Confirmed | 5.00 |
1507 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Closed | 25.00 |
1508
1509 I should see "Confirmed-p" in "State"
1510
1511#LINE 51
1512
1513 I open tab menu "WAREHOUSE"
1514 I open accordion menu "Warehouse Management"
1515 I click on menu "Incoming Shipments"
1516
1517 I click "Edit" on line:
1518 | PURCHASE ORDER |
1519 | *{{PO_REF_EXT_COO}}* |
1520
1521
1522 I click on "Process" and open the window
1523 I click on "Copy all"
1524
1525 I click "Edit" on line:
1526 | PRODUCT |
1527 | *DORADIDA15T* |
1528
1529 I fill "29/Jun/2018" within column "EXPIRY DATE"
1530 And I validate the line
1531
1532 I click on "Process" and close the window if necessary
1533 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
1534 I click on "Close" and close the window if a window is open
1535
1536 I open tab menu "PURCHASES"
1537 I click on menu "Purchase Orders"
1538
1539 I click "Edit" on line:
1540 | REFERENCE |
1541 | *{{PO_REF_EXT_COO}}* |
1542
1543 I should see in the main table the following data:
1544 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QUANTITY |
1545 | ADAPCART02- | (printer Laserwriter ) CARTRIDGE INKING | Closed | 50.00 |
1546 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Closed | 5.00 |
1547
1548 I should see "Closed" in "Order State"
1549
1550#LINE 52
1551
1552 I open tab menu "WAREHOUSE"
1553 I open accordion menu "Warehouse Management"
1554 I click on menu "Deliveries|Picking"
1555
1556
1557 I click "Edit" on line:
1558
1559 | ORIGIN | LINES STATE |
1560 | {{FO_REFERENCE_2}} | *vailable* |
1561
1562 I click on "Create Picking..." and open the window
1563 I click on "Copy all"
1564 I click on "Create Picking" and close the window
1565
1566 I click on "Validate Picking..." and open the window
1567 I click on "Copy all"
1568 I click on "Validate Picking" and close the window
1569
1570 I click on "Pack..." and open the window
1571 I click on "Next"
1572 I click "Edit" on line:
1573 | FROM P. |
1574 | 1 |
1575
1576 I fill "2" within column "Weight P.P [KG]"
1577 I validate the line
1578
1579 I click on "Process" and close the window
1580
1581 I click on "Create Shipment..." and open the window
1582 I click on "Create Shipment" and close the window
1583
1584 I click on "Validate"
1585
1586 I store "Reference" in "SHIPREF_3"
1587
1588
1589 I open tab menu "ORDERS"
1590 I click on menu "Field Orders"
1591 I click "Edit" on line:
1592 | ORDER REFERENCE |
1593 | *{{FO_REFERENCE_2}}|
1594
1595 I should see in the main table the following data:
1596 | PRODUCT CODE | PRODUCT DESCRIPTION | STATE | QTY |
1597 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Closed | 5.00 |
1598 | DORADIDA15T | DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Closed | 25.00 |
1599
1600 I should see "Closed" in "State"
1601
1602#LINE 53 & 54
1603 ####################
1604 ## SYNCHRONIZATION
1605 ###################
1606
1607 I synchronize "HQ1C1"
1608 I synchronize "HQ1C1P1"
1609 I log out
1610 I log into instance "HQ1C1P1"
1611
1612#LINE 55
1613
1614 I open tab menu "WAREHOUSE"
1615 I open accordion menu "Warehouse Management"
1616 I click on menu "Incoming Shipments"
1617
1618 I click "Edit" on line:
1619 | PURCHASE ORDER |
1620 | *{{PO_REF_COO_2}}* |
1621
1622 I click on "Process" and open the window
1623 I click on "Copy all"
1624 I click on "Process" and close the window if necessary
1625 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
1626 I click on "Close" and close the window if a window is open
1627
1628#LINE 56
1629
1630 I open tab menu "WAREHOUSE"
1631 I open accordion menu "Warehouse Management"
1632 I click on menu "Deliveries|Delivery Orders"
1633
1634 I click "Edit" on line:
1635 | ORIGIN |
1636 | {{IR_REFERENCE}} |
1637
1638 I should see in the main table the following data:
1639 | PRODUCT | Quantity | State |
1640 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | 5.000 | Available |
1641
1642 I click on "Process" and open the window
1643 I click on "Copy all"
1644 I click on "Process" and close the window if necessary
1645 I click on "Refresh" until "Done" in "Processing of lines" if a window is open
1646 I click on "Close" and close the window if a window is open
1647
1648 I open tab menu "ORDERS"
1649 I click on menu "Internal Requests"
1650 I click "Edit" on line:
1651 | ORDER REFERENCE |
1652 | *{{IR_REFERENCE}}* |
1653
1654 I should see in the main table the following data:
1655 | PRODUCT | STATE | QUANTITY (UOM) | UNIT PRICE |
1656 | [ADAPCABL1S-] (computer) CABLE, SERIAL interface for two PC (fem/fem) | Closed | 25.00 | 20.00 |
1657 | [ADAPCABL2S-] (computer) CABLE, SERIAL interface PC/Mini-M, female/male| Closed | 10.00 | * |
1658 | [ADAPCART02-] (printer Laserwriter ) CARTRIDGE INKING | Closed | 50.00 | 12.00 |
1659 | [ADAPCOLAPOW] (laptop computer) AC POWER ADAPTOR (model to specify) | Closed | 30.00 | * |
1660 | [DINJCEFA1V-] CEFAZOLIN, 1 g, (IV), powder, vial | Closed | 30.00 | * |
1661 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Closed | 5.00 | 1.00 |
1662 | [DORADIDA15T] DIDANOSINE (ddI), 150 mg, chewable dispersable tab. | Closed | 25.00 | 1.00 |
1663
1664 I should see "Closed" in "Order State"
1665
1666
01667
=== renamed directory 'bin/addons/unifield_tests/testfield/meta_features' => 'bin/addons/unifield_tests/testfield/meta_features_old'

Subscribers

People subscribed via source and target branches