-
Notifications
You must be signed in to change notification settings - Fork 0
/
shippingstatus.sol
406 lines (279 loc) · 12.3 KB
/
shippingstatus.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
pragma solidity ^0.5.16 ;
contract ShippingA {
////////////////// DECLARATIONS ////////////////////
address admin ;
address shipperadmin ;
address consigneeadmin ;
struct maerskop {
address maersk ;
string companyname ;
string addressofcompany ;
string country ;
uint code ;
uint officeline ;
}
struct branch {
address branchad ;
string branchname ;
uint scvcode ;
uint govtrefno ;
}
struct shipperuser{
address suad ;
string suname ;
string suphone ;
string surole ;
}
struct shipperbank{
address sbad ;
string sbname ;
string sbbranch ;
string sbifsc ;
string sbinc ;
string sbaddress ;
}
struct consigneeuser{
address cuad ;
string cuname;
string cuphone ;
string curole ;
}
struct consigneebank{
address cbad ;
string cbname ;
string cbbranch ;
string cbifsc ;
string cbinc ;
string cbaddress ;
}
struct freightterms{
uint identifier ;
string paycomponents ;
string terms ;
string orignalpaymentby ;
address maerskuu ;
address consigneeuserr ;
address shipperuserr ;
address shipperbankk ;
address consigneebankk ;
}
struct status {
uint identifier ;
bool freighttermscreated ;
bool freighttermstransferred ;
bool freighttermsapproved ;
bool paymenttermsapproved ;
}
/////////////////// MAPPING ////////////////////////
mapping (address => maerskop) maerskopmapping ;
mapping (address => branch) public branchmapping ;
mapping (address => bool) public branchu ;
mapping (address => bool) public maersku ;
mapping (address => bool) public shipperadminu ;
mapping (address => bool) public consigneeadminu ;
mapping (address => shipperuser) public sumapping ;
mapping (address => bool) public shipperuseru ;
mapping (address => shipperbank) public sbmapping ;
mapping (address => bool) public shipperbanku ;
mapping (address => consigneeuser)public cumapping ;
mapping (address => bool) public consigneeuseru ;
mapping (address => consigneebank) public cbmapping ;
mapping (address => bool) public consigneebanku ;
mapping (uint => freightterms) public freighttermmapping ;
mapping (address => mapping(uint => bool)) private freighttermtransfer ;
//mapping (uint => container) public containermapping ;
//mapping (address => mapping(uint => bool)) private containertransfer ;
//mapping (address => mapping(uint => bool)) private containertransfertoc ;
//mapping (uint => subconsigneeusers) subconsigneeusermapping ;
mapping (uint => status) public statusmapping ;
/////////////////// MODIFIERS////////////////////////
constructor() public {
admin = msg.sender ;
}
modifier onlyAdmin() {
require(admin == msg.sender) ;
_ ;
}
////////////////// FUNCTIONS ////////////////////////
function AddMaersk(address _maersk, string memory _companyname, string memory _addressofcompany ,string memory _country, uint _code ,uint _officeline) onlyAdmin public{
maerskopmapping[_maersk].maersk = _maersk ;
maerskopmapping[_maersk].companyname = _companyname ;
maerskopmapping[_maersk].addressofcompany = _addressofcompany ;
maerskopmapping[_maersk].country = _country ;
maerskopmapping[_maersk].code = _code ;
maerskopmapping[_maersk].officeline = _officeline ;
if(!maersku[_maersk]){
maersku[_maersk] = true ;
}
else{
maersku[_maersk] = false ;
}
}
function AddBranch(uint _scvcode, string memory _branchname, uint _govtrefno, address _branchad) public{
require(maersku[msg.sender]) ;
branchmapping[_branchad].branchad = _branchad ;
branchmapping[_branchad].scvcode = _scvcode ;
branchmapping[_branchad].branchname = _branchname ;
branchmapping[_branchad].govtrefno = _govtrefno ;
if(!branchu[_branchad]){
branchu[_branchad] = true ;
}
else{
branchu[_branchad] = false ;
}
}
function AddShipperAdmin(address _shipperadmin) public {
require(branchu[msg.sender]) ;
if(!shipperadminu[_shipperadmin]){
shipperadminu[_shipperadmin] = true ;
}
else{
shipperadminu[_shipperadmin] = false ;
}
}
function AddConsigneeAdmin(address _consigneeadmin) public {
require(branchu[msg.sender]) ;
if(!consigneeadminu[_consigneeadmin]){
consigneeadminu[_consigneeadmin] = true ;
}
else{
consigneeadminu[_consigneeadmin] = false ;
}
}
function AddShipperUser(address _suad, string memory _suname, string memory _suphone, string memory _surole) public {
require(shipperadminu[msg.sender]) ;
sumapping[_suad].suad = _suad ;
sumapping[_suad].suname = _suname ;
sumapping[_suad].suphone = _suphone ;
sumapping[_suad].surole = _surole ;
if(!shipperuseru[_suad]){
shipperuseru[_suad] = true ;
}
else{
shipperuseru[_suad] = false ;
}
}
function AddShipperBank(address _sbad, string memory _sbname, string memory _sbbranch, string memory _sbifsc, string memory _sbinc, string memory _sbaddress ) public {
require(shipperadminu[msg.sender]) ;
sbmapping[_sbad].sbad = _sbad ;
sbmapping[_sbad].sbname = _sbname ;
sbmapping[_sbad].sbbranch = _sbbranch ;
sbmapping[_sbad].sbifsc = _sbifsc ;
sbmapping[_sbad].sbinc = _sbinc ;
sbmapping[_sbad].sbaddress = _sbaddress ;
if(!shipperbanku[_sbad]){
shipperbanku[_sbad] = true ;
}
else{
shipperbanku[_sbad] = false ;
}
}
function AddConsigneeUser(address _cuad, string memory _cuname, string memory _cuphone, string memory _curole) public {
require(consigneeadminu[msg.sender]) ;
cumapping[_cuad].cuad = _cuad ;
cumapping[_cuad].cuname = _cuname ;
cumapping[_cuad].cuphone = _cuphone ;
cumapping[_cuad].curole = _curole ;
if(!consigneeuseru[_cuad]){
consigneeuseru[_cuad] = true ;
}
else{
consigneeuseru[_cuad] = false ;
}
}
function AddConsigneeBank(address _cbad, string memory _cbname, string memory _cbbranch, string memory _cbifsc, string memory _cbinc, string memory _cbaddress ) public {
require(consigneeadminu[msg.sender]) ;
cbmapping[_cbad].cbad = _cbad ;
cbmapping[_cbad].cbname = _cbname ;
cbmapping[_cbad].cbbranch = _cbbranch ;
cbmapping[_cbad].cbifsc = _cbifsc ;
cbmapping[_cbad].cbinc = _cbinc ;
cbmapping[_cbad].cbaddress = _cbaddress ;
if(!consigneebanku[_cbad]){
consigneebanku[_cbad] = true ;
}
else{
consigneebanku[_cbad] = false ;
}
}
function CreateFreightTerms(address _ShipperUser, address _ConsigneeUser, address _ShipperBank, address _ConsigneeBank ,uint _identifier , string memory _paycomponents , string memory _terms , string memory _orignalpaymentby) public {
require(maersku[msg.sender]) ;
freighttermmapping[_identifier].identifier = _identifier ;
freighttermmapping[_identifier].shipperuserr = _ShipperUser ;
freighttermmapping[_identifier].consigneeuserr = _ConsigneeUser ;
freighttermmapping[_identifier].shipperbankk = _ShipperBank ;
freighttermmapping[_identifier].consigneebankk = _ConsigneeBank ;
freighttermmapping[_identifier].paycomponents = _paycomponents ;
freighttermmapping[_identifier].terms = _terms ;
freighttermmapping[_identifier].maerskuu = msg.sender ;
freighttermmapping[_identifier].orignalpaymentby = _orignalpaymentby ;
freighttermtransfer[_ShipperUser][_identifier] = true ;
statusmapping[_identifier].identifier = _identifier ;
statusmapping[_identifier].freighttermscreated = true ;
}
function TransferFreightTerms(uint _identifier) public {
require(freighttermtransfer[msg.sender][_identifier]) ;
statusmapping[_identifier].freighttermstransferred = true ;
freighttermtransfer[msg.sender][_identifier] = false ;
freighttermtransfer[freighttermmapping[_identifier].consigneeuserr][_identifier] = true ;
}
function ApproveFreightTerms( uint _identifier) public {
require(freighttermtransfer[msg.sender][_identifier]) ;
statusmapping[_identifier].freighttermsapproved = true ;
freighttermtransfer[msg.sender][_identifier] = false ;
freighttermtransfer[freighttermmapping[_identifier].shipperuserr][_identifier] = true ;
}
function ApprovePaymentTerms(uint _identifier) public {
require(freighttermtransfer[msg.sender][_identifier]) ;
statusmapping[_identifier].paymenttermsapproved = true ;
freighttermtransfer[msg.sender][_identifier] = false ;
}
struct container {
uint identifierr ;
uint noofconsignee ;
string shipment ;
address token ;
address maerskuu ;
address shipperuserrr ;
address shipperbankk ;
address consigneebankk ;
}
mapping (uint => container) public containermapping ;
mapping (address => mapping(uint => bool)) private containertransfer ;
mapping (address => mapping(uint => bool)) private containertransfertoc ;
// mapping (uint => subconsigneeusers) subconsigneeusermapping ;
function CreateContainer(address _toshipperuser , uint _identifierr , string memory _shipment) public {
require(shipperuseru[_toshipperuser]) ;
require(maersku[msg.sender]) ;
//address token = address(sha256(msg.sender)) ;
containermapping[_identifierr].identifierr = _identifierr ;
containermapping[_identifierr].shipment = _shipment ;
containermapping[_identifierr].maerskuu = msg.sender ;
//containermapping[_identifierr].token = token ;
containertransfer[_toshipperuser][_identifierr] = true ;
}
function TransferContainer1(address _toshipperbank , uint _identifierr) public {
require(containertransfer[msg.sender][_identifierr]) ;
containermapping[_identifierr].shipperuserrr = msg.sender ;
containertransfer[msg.sender][_identifierr] = false ;
containertransfer[_toshipperbank][_identifierr] = true ;
}
function TransferContainer2(address _toconsigneebank , uint _identifierr) public {
require(consigneebanku[_toconsigneebank]) ;
require(containertransfer[msg.sender][_identifierr]) ;
containermapping[_identifierr].shipperbankk = msg.sender ;
containertransfer[msg.sender][_identifierr] = false ;
containertransfer[_toconsigneebank][_identifierr] = true ;
}
function TransferContainer3(address _toconsigneeuser , uint _identifierr) public {
require(consigneeuseru[_toconsigneeuser]) ;
require(containertransfer[msg.sender][_identifierr]) ;
containermapping[_identifierr].consigneebankk = msg.sender ;
containertransfer[msg.sender][_identifierr] = false ;
containertransfertoc[_toconsigneeuser][_identifierr] = true ;
}
function finish(uint _identifierr) private {
require(containertransfer[msg.sender][_identifierr]) ;
containertransfer[msg.sender][_identifierr]=false ;
}
}