@@ -181,11 +181,8 @@ class LetterOfCredit extends Component {
181
181
"$class" : "org.example.loc.ProductDetails" ,
182
182
"productType" : type ,
183
183
"quantity" : quantity ,
184
- "pricePerUnit" : price . toFixed ( 2 ) ,
185
- "id" : "string"
186
- } ,
187
- "transactionId" : "" ,
188
- "timestamp" : "2018-03-13T11:35:00.218Z" // the transactions seem to need this field filled in; when submitted the correct time will replace this value
184
+ "pricePerUnit" : price . toFixed ( 2 )
185
+ }
189
186
} )
190
187
. then ( ( ) => {
191
188
this . setState ( {
@@ -219,9 +216,7 @@ class LetterOfCredit extends Component {
219
216
axios . post ( this . config . restServer . httpURL + '/Approve' , {
220
217
"$class" : "org.example.loc.Approve" ,
221
218
"loc" : letter ,
222
- "approvingParty" : resourceURL + approvingParty ,
223
- "transactionId" : "" ,
224
- "timestamp" : "2018-03-13T11:25:08.043Z" // the transactions seem to need this field filled in; when submitted the correct time will replace this value
219
+ "approvingParty" : resourceURL + approvingParty
225
220
} )
226
221
. then ( ( ) => {
227
222
this . setState ( {
@@ -243,9 +238,7 @@ class LetterOfCredit extends Component {
243
238
axios . post ( this . config . restServer . httpURL + '/Reject' , {
244
239
"$class" : "org.example.loc.Reject" ,
245
240
"loc" : letter ,
246
- "closeReason" : "Letter has been rejected" ,
247
- "transactionId" : "" ,
248
- "timestamp" : "2018-03-13T11:35:00.281Z" // the transactions seem to need this field filled in; when submitted the correct time will replace this value
241
+ "closeReason" : "Letter has been rejected"
249
242
} )
250
243
. then ( ( ) => {
251
244
this . setState ( {
@@ -265,10 +258,7 @@ class LetterOfCredit extends Component {
265
258
let letter = "resource:org.example.loc.LetterOfCredit#" + letterId ;
266
259
axios . post ( this . config . restServer . httpURL + '/ReadyForPayment' , {
267
260
"$class" : "org.example.loc.ReadyForPayment" ,
268
- "loc" : letter ,
269
- 'beneficiary' : "resource:org.example.loc.Customer#bob" ,
270
- "transactionId" : "" ,
271
- "timestamp" : "2018-03-13T11:35:00.281Z" // the transactions seem to need this field filled in; when submitted the correct time will replace this value
261
+ "loc" : letter
272
262
} )
273
263
. then ( ( ) => {
274
264
this . setState ( {
@@ -289,9 +279,7 @@ class LetterOfCredit extends Component {
289
279
axios . post ( this . config . restServer . httpURL + '/Close' , {
290
280
"$class" : "org.example.loc.Close" ,
291
281
"loc" : letter ,
292
- "closeReason" : "Letter has been completed." ,
293
- "transactionId" : "" ,
294
- "timestamp" : "2018-03-13T11:35:00.139Z" // the transactions seem to need this field filled in; when submitted the correct time will replace this value
282
+ "closeReason" : "Letter has been completed."
295
283
} )
296
284
. then ( ( ) => {
297
285
this . setState ( {
0 commit comments