Arrays
如何做銷售收據
我有一個市場。我想為每件出售的商品製作銷售收據。銷售收據將顯示
address_receipt
,nameOfGood
,amountOfGood
,Price
,sumPrice
,address_transaction
。我應該通過什麼來有效地實施?通過數組?堅固性也許是數組中的數組?還是通過結構?我需要在入口處提供買家地址時,應顯示他的銷售收據。提前致謝
您可以為每件出售的商品生成一份契約,並將銷售資訊以更易讀和更易於訪問的方式儲存在結構上。
pragma solidity ^0.4.18; contract MarketplaceContract{ struct SalesReceipt{ address address_receipt string nameOfGood uint amountOfGood uint Price uint sumPrice address address_transaction } }