-
Notifications
You must be signed in to change notification settings - Fork 0
/
kyd.sol
236 lines (205 loc) · 8.02 KB
/
kyd.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
pragma solidity^0.5.1;
contract knowYourDrug
{
string public manufacturerName="emcure";
address public manufacturerAddress;
uint32 public currentAccessor;
uint32 public currentDrugAccessed;
bool public exception;
bool public drugException;
constructor() public
{
manufacturerAddress=msg.sender;
}
struct partOfSupplyChain
{
string corresName;
//string designationInChain;
uint32 recogId;
// bool isManufacturer;
bool isWarehouse;
bool isSupplier;
bool isSubSupplier;
// bool isSubSupplier;
bool isRetailer;
}
mapping (uint32 => bool) accounts;
partOfSupplyChain[] public supplyChainParts;
function updateSupplyChainDetails(string memory _name, uint32 _id,bool _isWarehouse,bool _isSupplier,bool _isSubSupplier,bool _isretailer) public
{
//require(msg.sender==Manager);
supplyChainParts.push(partOfSupplyChain({
corresName: _name,
//designationInChain: _designation,
recogId: _id,
isWarehouse: _isWarehouse,
isSupplier: _isSupplier,
isSubSupplier: _isSubSupplier,
isRetailer: _isretailer
}));
accounts[_id]=true;
}
function toSignIn(uint32 _id) public returns (string memory,string memory,uint32,bool)
{
if(accounts[_id]==true){
for(uint32 index=0;index<supplyChainParts.length;index++)
{
if(supplyChainParts[index].recogId==_id)
{
currentAccessor = index;
// return(supplyChainParts[index].corresName,supplyChainParts[index].designationInChain,supplyChainParts[index].recogId,supplyChainParts[index].isManufacturer);
}
}
}
}
struct DrugDetails
{
string drugName;
//string manufacturedBy;
string drugId;
uint32 serialNumberFrom;
uint32 serialNumberTo;
// uint32[] pathOfDrug;
string manufactureDate;
string expiryDate;
// uint32[] pathOfDrug;
bool isFromAuthorisedSource;
}
DrugDetails[] public drugsInNetwork;
mapping(string=>bool)drugAccounts;
function manufacturerUpdateDrugs(string memory _drugName,string memory _drugId, uint32 _serialNumberFrom,uint32 _serialNumberTo,string memory _manufactureDate,string memory _expiryDate) public
{
require(msg.sender==manufacturerAddress);
// uint32[] memory tempPath;
// tempPath[0] = supplyChainParts[currentAccessor].recogId;
drugsInNetwork.push(DrugDetails({
drugName: _drugName,
//manufacturedBy: manufacturerName,
drugId: _drugId,
serialNumberFrom: _serialNumberFrom,
serialNumberTo: _serialNumberTo,
// pathOfDrug:tempPath,
// pathOfDrug[pathTraceIndex]:supplyChainParts[currentAccessor].recogId,//
function updatePath(uint32 supplyChainParts[currentAccessor].recogId) public
{
pathOfDrug.push(supplyChainParts[currentAccessor].recogId)
}
manufactureDate: _manufactureDate,
expiryDate: _expiryDate,
isFromAuthorisedSource: true
})
);
drugAccounts[_drugId]=true;
}
function manufacturerUpdateDrugs(uint32 rid,string memory _drugName,string memory _drugId, uint32 _serialNumberFrom,uint32 _serialNumberTo,string memory _manufactureDate,string memory _expiryDate) public
{
require(accounts[rid]);
require(supplyChainParts[currentAccessor].isManufacturer);
// uint32[] memory tempPath;
// tempPath[0] = supplyChainParts[currentAccessor].recogId;
drugsInNetwork.push(DrugDetails({
drugName: _drugName,
manufacturedBy: supplyChainParts[currentAccessor].corresName,
drugId: _drugId,
serialNumberFrom: _serialNumberFrom,
serialNumberTo: _serialNumberTo,
// pathOfDrug:tempPath,
// pathOfDrug[pathTraceIndex]:supplyChainParts[currentAccessor].recogId,//
manufactureDate: _manufactureDate,
expiryDate: _expiryDate,
isFromAuthorisedSource: true
})
);
drugAccounts[_drugId]=true;
}
struct Supplier
{
uint32 recogId;
string drugId;
uint32 havingSerialNumberFrom;
uint32 havingSerialNumberTo;
string checkInDate;
string checkOutDate;
bool received;
}
Supplier[] public Suppliers;
function supplierUpdateDrugs(uint32 _ID,string memory _drugId,uint32 _serialNumberFrom,uint32 _serialNumberTo, string memory _checkInDate, string memory _checkOutDate) public
{
require(drugAccounts[_drugId]);
require(accounts[_ID]);
require(supplyChainParts[currentAccessor].isManufacturer==false);
for(uint32 index=0;index<drugsInNetwork.length;index++)
{
string memory t = drugsInNetwork[index].drugId;
if(keccak256(bytes(t))==keccak256(bytes(_drugId)))
{
currentDrugAccessed=index;
break;
}
else
{
drugException=true;
break;
}
}
if(drugException==false){
// uint32[] memory tempPath;
// tempPath[0] = supplyChainParts[currentAccessor].recogId;
Suppliers.push(Supplier({
recogId:supplyChainParts[currentAccessor].recogId,
drugId:_drugId,
havingSerialNumberFrom:_serialNumberFrom,
havingSerialNumberTo:_serialNumberTo,
checkInDate:_checkInDate,
checkOutDate:_checkOutDate,
received: true
//have to include his recogId in the pathOfDrug of the drug
}));
//drugsInNetwork[currentDrugAccessed].pathOfDrug = tempPath;
}
}
struct Retailer
{
uint32 recogId;
string drugId;
uint32 havingSerialNumberFrom;
uint32 havingSerialNumberTo;
string checkInDate;
string checkOutDate;
}
Retailer[] public Retailers;
function retailerUpdateDrugs(uint32 _retailerID,string memory _drugId,uint32 _serialNumberFrom,uint32 _serialNumberTo, string memory _checkInDate, string memory _checkOutDate) public
{
require(drugAccounts[_drugId]);
require(accounts[_retailerID]);
require(supplyChainParts[currentAccessor].isManufacturer==false);
for(uint32 index=0;index<drugsInNetwork.length;index++)
{
string memory t = drugsInNetwork[index].drugId;
if(keccak256(bytes(t))==keccak256(bytes(_drugId)))
{
currentDrugAccessed=index;
break;
}
else
{
drugException=true;
break;
}
}
if(drugException==false){
// uint32[] memory tempPath;
// tempPath[0] = supplyChainParts[currentAccessor].recogId;
Retailers.push(Retailer({
recogId:supplyChainParts[currentAccessor].recogId,
drugId:_drugId,
havingSerialNumberFrom:_serialNumberFrom,
havingSerialNumberTo:_serialNumberTo,
checkInDate:_checkInDate,
checkOutDate:_checkOutDate
//have to include his recogId in the pathOfDrug of the drug
}));
//drugsInNetwork[currentDrugAccessed].pathOfDrug = tempPath;
}
}
}