[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature by matkodurko

View this thread on steempeak.com
· @matkodurko · (edited)
$31.63
[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature
<center> <h2>Project introduction </h2></center>
#### Repository
https://github.com/boxwise/boxwise_WMS

#### What is Boxwise?
As stated in project's README file, <i>Boxwise is a web-app, which makes it easy for organisations to source, store and distribute donated goods to people in need in a fair and dignified way.</i>  

#### How it works (in a nutshell)?
Handing out the donations can get very hectic. And especially without proper warehouse management tool. That's why <a href="https://drapenihavet.no/en/home/">Drop in the Ocean</a> NGO implemented so called DropAppin several of its camps. It helps coordinators to sort and easily store all incoming boxes full of donations based on clothes size, clothes type and gender in the "big warehouse". It also tracks which clothes types are being asked for the most and therefore can coodinators react accordingly and bring to the camp more pieces of particular items. App also grants every camp resident (refugee) X amount of "drops" every moth which a "virtual currency" used to buy clothes from the donations. <b>This is very important as this gives refugees the control over what they wear and how they identify themselves. It's a very important psycho-social activity which they lost!</b>

<iframe width="560" height="315" src="https://www.youtube.com/embed/5R6xwMyksX8" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<center><sup>Here is the video where you can see how DiH volunteers use the DropApp :)</sup></center>


#### Why did I join the project?
During my 12 days of volunteering in Greece this January in <a href="https://drapenihavet.no/en/home/">Drop in the Ocean</a>(DiH) Skaramagas camp, I've been using DropApp daily and realized how amazing this tool is. I got to know it was developed by former volunteers last year and I contacted them on Facebook. During a quick Google Hangouts we had, they explained me the issues of the application (unscalability -> every camp needs their own web server and tech person) and the reason why Boxwise was created. <b>It's basically a DropApp 2.0.</b> Better, more stable and scalable version ( hopefully ;) ).

<center>![](https://cdn.steemitimages.com/DQmQjpEjS4Xav62jDfmTYz4hHBoFCnsr9NBQtTTP2VPmiaV/image.png)</center>
<center><sup>DropApp in it's current form (Basic HTML, bit of CSS & Javascript and custom PHP framework developed by former volunteer which only 3 poeple in this world understand :D)</sup></center>

<center>![text16.png](https://cdn.steemitimages.com/DQmcvVqhGMbF1KAHTn9Wh8FiRhmpAbiEuAKerVM7ugDnXfX/text16.png)</center>

<center> <h2>Tech talk</h2></center>

## Odoo
We are using the open source ERP system called Odoo as the base for Boxwise. It's a modular system which allows to add various modules into the environment and there are already several modules which address the exact same area - warehouse management.
<b>Sounds great right? The only problem is, the whole team which is currently 4 people have almost zero experience in Odoo. Ok, let's be honest..not almost zero...zero :D</b>

Anyway, let's not lose more time and get into the nitty-gritty. My task was:



## New Feature -  generate packages in bulk
<ul>
<li>My pull request: <a href="https://github.com/boxwise/boxwise_wms/pull/31">HERE</a></li>
<li>Detailed task description: <a href="https://github.com/boxwise/boxwise_wms/issues/9">Feature request #9</a></li>
<li>Language: Python, XML</li>
<li>Commits: 6</li>
<li>Additions: 64 (cumulative commit by commit - 100)</li>
<li>Deletions: 2 (cumulative commit by commit - 40)</li>
<li>Time spent: <b>good 12 hours!!</b> (don't laugh, first time Odoo user here, I've read at least 70 pages of Odoo Essensials book to get required knowledge how to do this + we still didn't have a debugger last week)</li>
</ul>

<b>Usecase of the new feature: </b>We're using GitHub issues as a list of feature requests as well, so you the more detailed description can be found in the link above. It's a crucial feature used by coordinators (warehouse volunteers) daily. Donation boxes don't come one by one but in bulks. Each box gets labeled by unique QR label which leads to form where coordinator fills parameters of items in the box (gender, size, clothes type, items count). Generating these packages (QR codes/labels) in bulk saves ton of time daily! For better understanding, watch the Youtube video linked above :)

<center>![](https://cdn.steemitimages.com/DQmZGsEdZfc74W2YgXdqSy4UrSGfvGhboeG7q9A2FtE4s33/image.png)</center><center><sup>Placement of the feature in the whole workflow for better understanding :)</sup></center>

Ok, I guess GIF makes up for thousand of various workflows and schemes right? Well then, here you go, the process in the old DropApp (Javascript + PHP) which I recreated in Boxwise (Odoo + XML + Python)

<center>![DropApp.gif](https://cdn.steemitimages.com/DQmPuMokJFiJySxnub2sbZxTc3HKtf8ncnHsEZygAVurMRW/DropApp.gif)</center><center><sup>DropApp 1.0</sup></center>

And my implementation in Odoo for Boxwise :) Ohhh I love it :D

<center>![boxwise.gif](https://cdn.steemitimages.com/DQmTuZdE3hVMAdMdpWCvgzS49F3mereFns2DdXAnxM6ey8Z/boxwise.gif)</center><center><sup>Boxwise (DropApp 2.0) - we've agreed that QR codes shouldn't be displayed to the coordinator (he needs to download & print them anyway) but write it down as an issue because it'd require to return 2 actions from server and we don't know how to do it yet :)</sup></center>

## Implementation & Code
#### Step 1: How to register python classes in Odoo
3 minutes into it, I knew I'm screwed. I had no idea where and how to start. Hans has managed to add the "Generate QR labels" option to menu with XML (which I later changed) and then passed it to me. I needed a way how to get input from user back to server side. Googling..googling...and then I've found this <a href="https://drive.google.com/file/d/1jY75tDjeFqJxgOb-JTeh35Pp9IOr4Irt/view">380 pages long PDF</a> :D What a nice weekend ahead of me :) Eventually, I started to make some microsteps..


<pre><code>from . import wizards</code></pre>
<center><sup>Register new folder in odoo root __init__.py</sup></center>


<pre><code>from . import generate_qr_count_wizard </code></pre>
<center><sup>Add __init__.py in new folder and import everything from new class</sup></center>

Till now it all makes sense. Standard python right? But creating the class (so called model) has some specific Odoo rules . It has to inherit from <i>model.Model</i> class or some other submodels..Eventually, my dummy class "Book" was in and I could move on :)

#### Step 2: Get user input, trigger server action & change menu item from Hans 
After I've managed to link my dummy test model (class) to Odoo, it was time to create some real models. User popup (simple alert in Javascript) is called wizard in Odoo. It can be implemented with a class which has to have a <i>TransientModel as a superclass</i>.

<pre><code>class QrGenerateWizard(models.TransientModel):
    _name = 'boxwise_wms.qr.generate.wizard'
    _description = 'Number of QR codes to be generated'
    number = fields.Char(string='Number of labels', required=True, default=0)</code></pre>
<center><sup>Overriding superclass variables is done by underscore, new user-defined variables start with small letters</sup></center>

<sup>Details are in commit #7031f2301d0eab437f33aff54521847a23b67eb5</sup>

#### Step 3: Submit wizard and generate packages
This one was pretty straightforward as I already knew a bit about Odoo wizards at this point. Method annotated by @api.multi with the same name as the wizard button was needed.
<pre><code>< footer>
   < button name="mass_generate" type="object" string="Generate" 
     class="oe_highlight"/>
   < button special="cancel" string="Cancel"/>
< /footer>
</code>
</pre>

<pre><code>
 @api.multi
 def mass_generate(self):
     _logger.debug('Starting batch QR codes generation')
     package_model = self.env['stock.quant.package']
     number_of_packages = int(self.number)
     created_packages = []  
     for _ in range(number_of_packages):
        created_packages.append(package_model.create({}))
</code>
</pre>

<sup>Details are in commit #e03800020918c00dd4bcf0b16c3c6239004fbdee</sup>


#### Step 4: Navigate back to packages tree view
It's little bit counterintuitive (at least for me) but the way navigation from server is done in Odoo is that you basically just return the <i>act_window action</i> with <i>result model</i> set to packages. The same one which is bound to menu item. Return is called from method which generates packages (obviously). <i>If Odoo model method starts with underscore, it's private.</i> It looks like this:

<pre><code>return self._open_packages_list()</code></pre><pre><code>
 @api.model    
 def _open_packages_list(self):
    return {
        'type':'ir.actions.act_window',
        'res_model':'stock.quant.package',
        'view_type':'list',
        'view_mode':'list',
        'target':'current'
     }
 </code></pre>

<sup>Details are in commit #e03800020918c00dd4bcf0b16c3c6239004fbdee</sup>

#### Step 5: Cleanup according to Odoo best practices 
Nothing special here. I've replaced <i>camelCasing to snake_casing</i> which is the good practice in all Odoo modules for common variables.

<sup>Details are in commit #d9adbdfec3f90c340fb340280abfb594488be084</sup>

#### Bonus commit: Removing unneeded table header alignment
This one came pretty handy as I was struggling with Odoo for couple of hours at this point and then I've noticed this completely random right alignment CSS which had nothing to do there :) Boom, delete :) Finally something to commit haha :D
<sup>Details are in commit #0d5ba1dd19009f294aa772214777112f86eb0b34</sup>

<center>![text16.png](https://cdn.steemitimages.com/DQmcvVqhGMbF1KAHTn9Wh8FiRhmpAbiEuAKerVM7ugDnXfX/text16.png)</center>

## Next steps for Boxwise team
<ol>
<li><b>Continue implementing</b> basic DropApp functionality into Boxwise for the next 2 weeks</li>
<li>In two weeks, Hans and James are flying over to Athens to <b>test our first version</b> in local warehouse in Pampiraiki</li>
<li><b>Month of development</b></li>
<li><b>Flying back to Greece</b> from 3rd to 8th April and hopefully implement Boxwise in one of Drop in the Ocean camps. I'm flying this time as well :) </li>
</ol>

#### GitHub Account
https://github.com/DurkoMatko
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 67 others
properties (23)
post_id70,403,386
authormatkodurko
permlinkboxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature
categoryutopian-io
json_metadata{"tags":["utopian-io","development","volunteering","help","powerhousecreatives"],"users":["api.multi"],"image":["https:\/\/img.youtube.com\/vi\/5R6xwMyksX8\/0.jpg","https:\/\/cdn.steemitimages.com\/DQmQjpEjS4Xav62jDfmTYz4hHBoFCnsr9NBQtTTP2VPmiaV\/image.png","https:\/\/cdn.steemitimages.com\/DQmcvVqhGMbF1KAHTn9Wh8FiRhmpAbiEuAKerVM7ugDnXfX\/text16.png","https:\/\/cdn.steemitimages.com\/DQmZGsEdZfc74W2YgXdqSy4UrSGfvGhboeG7q9A2FtE4s33\/image.png","https:\/\/cdn.steemitimages.com\/DQmPuMokJFiJySxnub2sbZxTc3HKtf8ncnHsEZygAVurMRW\/DropApp.gif","https:\/\/cdn.steemitimages.com\/DQmTuZdE3hVMAdMdpWCvgzS49F3mereFns2DdXAnxM6ey8Z\/boxwise.gif"],"links":["https:\/\/github.com\/boxwise\/boxwise_WMS","https:\/\/drapenihavet.no\/en\/home\/","https:\/\/www.youtube.com\/embed\/5R6xwMyksX8","https:\/\/github.com\/boxwise\/boxwise_wms\/pull\/31","https:\/\/github.com\/boxwise\/boxwise_wms\/issues\/9","https:\/\/drive.google.com\/file\/d\/1jY75tDjeFqJxgOb-JTeh35Pp9IOr4Irt\/view","https:\/\/github.com\/DurkoMatko"],"app":"steemit\/0.1","format":"markdown"}
created2019-02-20 12:50:48
last_update2019-02-20 13:33:51
depth0
children17
net_rshares59,537,311,149,683
last_payout2019-02-27 12:50:48
cashout_time1969-12-31 23:59:59
total_payout_value23.858 SBD
curator_payout_value7.772 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10,390
author_reputation37,728,250,474,469
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (131)
@blueeyes8960 ·
You are amazing!  This is an great project of real value.  Resteeming so a few more people can see it.  Too bad I don't understand all the technical stuff, but it's obvious that you do, and that it's for a good cause!
πŸ‘  
properties (23)
post_id70,409,534
authorblueeyes8960
permlinkre-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190220t154312420z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-02-20 15:43:12
last_update2019-02-20 15:43:12
depth1
children1
net_rshares10,569,763,479
last_payout2019-02-27 15:43:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length217
author_reputation78,624,076,172,973
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@matkodurko ·
Hah, thanks but hey, I've just joined the team, there are other guys who have been working on it much longer :) this was my first contribution only :D soo don't think im a hero :D

Posted using [Partiko Android](https://steemit.com/@partiko-android)
properties (22)
post_id70,410,958
authormatkodurko
permlinkmatkodurko-re-blueeyes8960-re-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190220t161022818z
categoryutopian-io
json_metadata{"app":"partiko","client":"android"}
created2019-02-20 16:10:24
last_update2019-02-20 16:10:24
depth2
children0
net_rshares0
last_payout2019-02-27 16:10:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length249
author_reputation37,728,250,474,469
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@amosbastian ·
$14.97
Sounds like a very interesting project (with a great goal) - it's really great to see projects like this on here! Your way of describing the steps you went through to add this feature resulted in a very interesting read (and funny - the 380 pages PDF sounds daunting lol). Also the picture of the workflow and the added GIFs really made it easy to understand what you actually implemented - great work with that.

Since I have never used Odoo myself, I don't really have any feedback to give about that, but here are some thoughts about the code:

* [This](https://github.com/boxwise/boxwise_wms/blob/992f74131ffc63e3b8579735ab640cff1a479843/wizards/generate_qr_count_wizard.py#L19-L22) can be converted to a one-liner (list comprehension) `created_packages = [package_model.create({}) for _ in range(number_of_packages)]`.

I'm definitely looking forward to seeing more contributions to this project!

---

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/1-2-2-2-1-1-3-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , , , , , , , , , ,
properties (23)
post_id70,409,746
authoramosbastian
permlinkre-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190220t154731284z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https:\/\/github.com\/boxwise\/boxwise_wms\/blob\/992f74131ffc63e3b8579735ab640cff1a479843\/wizards\/generate_qr_count_wizard.py#L19-L22","https:\/\/join.utopian.io\/guidelines","https:\/\/review.utopian.io\/result\/3\/1-2-2-2-1-1-3-","https:\/\/discord.gg\/uTyJkNm","https:\/\/join.utopian.io\/"],"app":"steemit\/0.1"}
created2019-02-20 15:47:30
last_update2019-02-20 15:47:30
depth1
children2
net_rshares28,342,020,123,210
last_payout2019-02-27 15:47:30
cashout_time1969-12-31 23:59:59
total_payout_value11.308 SBD
curator_payout_value3.660 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,356
author_reputation174,225,255,912,876
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (18)
@matkodurko · (edited)
Hmm nice, I'll add that one liner next time I'll be editing that file (which will be soon as we want to automatically download the pdf with those QR codes)..

And regarding Odoo...I'm not really too happy with it, I've searched a bit and it doesn't seem to be widely used ...so there won't be a huuuge benefit from being familiar with it...but yeah, that warehouse management module which is already implemented for Odoo comes in handy and saved us lot of work.

Edit: Also, thx for the review! :D
properties (22)
post_id70,410,555
authormatkodurko
permlinkre-amosbastian-re-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190220t160310922z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-02-20 16:03:12
last_update2019-02-20 16:16:30
depth2
children0
net_rshares0
last_payout2019-02-27 16:03:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length497
author_reputation37,728,250,474,469
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@utopian-io ·
Thank you for your review, @amosbastian! Keep up the good work!
properties (22)
post_id70,508,614
authorutopian-io
permlinkre-re-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190220t154731284z-20190222t225129z
categoryutopian-io
json_metadata{"app":"beem\/0.20.17"}
created2019-02-22 22:51:30
last_update2019-02-22 22:51:30
depth2
children0
net_rshares0
last_payout2019-03-01 22:51:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length63
author_reputation152,913,012,544,965
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steem-ua ·
#### Hi @matkodurko!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
post_id70,410,589
authorsteem-ua
permlinkre-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190220t160354z
categoryutopian-io
json_metadata{"app":"beem\/0.20.18"}
created2019-02-20 16:03:54
last_update2019-02-20 16:03:54
depth1
children0
net_rshares0
last_payout2019-02-27 16:03:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length289
author_reputation23,203,609,903,979
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@papilloncharity ·
Just a good guy! I have no idea about the spaghetti talk here, but we are also in the business of distributing donated goods to poor areas in the country. We do it the old fashioned way by collecting and delivering. 423 Tons of goods thus far over the past 17 years of Papillon's existence.
Great to see that you are involved in a good cause my friend! Blessings!
πŸ‘  
properties (23)
post_id70,414,639
authorpapilloncharity
permlinkre-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190220t180201917z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-02-20 18:02:09
last_update2019-02-20 18:02:09
depth1
children2
net_rshares33,804,264,904
last_payout2019-02-27 18:02:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length363
author_reputation132,841,366,171,065
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@matkodurko ·
Haha spaghetti talk :D I first thought youre going to talk sh*t about my code haha :D there's a term for shitty not nicely structured code - "spaghetti code" :D

Wow man, well you're doingmuch more than I do, that's for sure...17 years :O..keep it up :)
properties (22)
post_id70,420,711
authormatkodurko
permlinkre-papilloncharity-re-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190220t212604611z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-02-20 21:26:06
last_update2019-02-20 21:26:06
depth2
children1
net_rshares0
last_payout2019-02-27 21:26:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length253
author_reputation37,728,250,474,469
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@papilloncharity ·
Glad that you saw that I wasn't saying anything bad about your code, as I am sure that it is expertly done, but I meant that it was "spaghetti talk" to me personally, as the only thing that I know is punctuation marks in normal language. In code the punctuation marks take on a strange life of their own and they swirl all over the place, the same as trying to get spaghetti on a desert spoon. Blessings!
πŸ‘  
properties (23)
post_id70,460,662
authorpapilloncharity
permlinkre-matkodurko-re-papilloncharity-re-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190221t192316607z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-02-21 19:23:21
last_update2019-02-21 19:23:21
depth3
children0
net_rshares11,586,224,508
last_payout2019-02-28 19:23:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length404
author_reputation132,841,366,171,065
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@aejackson ·
Decentralized solutions for decentralized people! I love this idea and the implementation looks to be well underway. Please keep us updated on the project from time to time. A few individual's stories could go a long way to garner interest, and financial support, for your project.
properties (22)
post_id70,416,097
authoraejackson
permlinkre-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190220t184108546z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-02-20 18:41:06
last_update2019-02-20 18:41:06
depth1
children0
net_rshares0
last_payout2019-02-27 18:41:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length281
author_reputation3,285,993,247,600
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars0
@steem-plus ·
SteemPlus upvote
Hi, @matkodurko!

You just got a **0.65%** upvote from SteemPlus!
To get higher upvotes, earn more SteemPlus Points (SPP). On your Steemit wallet, check your SPP balance and click on "How to earn SPP?" to find out all the ways to earn.
If you're not using SteemPlus yet, please check our last posts in [here](https://steemit.com/@steem-plus) to see the many ways in which SteemPlus can improve your Steem experience on Steemit and Busy.
properties (22)
post_id70,436,753
authorsteem-plus
permlinkboxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature---vote-steemplus
categoryutopian-io
json_metadata{}
created2019-02-21 07:21:30
last_update2019-02-21 07:21:30
depth1
children0
net_rshares0
last_payout2019-02-28 07:21:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length437
author_reputation247,995,867,762,997
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jaynie ·
Ello Ello :)

The New 20k Delegation poll is out. It would be wonderful if you would support our @steemitbloggers community with your vote. 

https://dpoll.xyz/detail/@theycallmedan/which-steem-project-should-i-delegate-20k-steempower-to-for-1-year/

Thanks a mil.

xxx
πŸ‘  
properties (23)
post_id70,451,095
authorjaynie
permlinkre-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190221t151944943z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["steemitbloggers"],"links":["https:\/\/dpoll.xyz\/detail\/@theycallmedan\/which-steem-project-should-i-delegate-20k-steempower-to-for-1-year\/"],"app":"steemit\/0.1"}
created2019-02-21 15:19:48
last_update2019-02-21 15:19:48
depth1
children2
net_rshares35,618,626,189
last_payout2019-02-28 15:19:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length269
author_reputation355,722,315,917,077
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@matkodurko ·
Roger that! :D 

Also ready to start using our special footers :P
properties (22)
post_id70,451,816
authormatkodurko
permlinkre-jaynie-re-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190221t153720200z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-02-21 15:37:21
last_update2019-02-21 15:37:21
depth2
children1
net_rshares0
last_payout2019-02-28 15:37:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length65
author_reputation37,728,250,474,469
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jaynie ·
Whoop Whoop Gangnam Style!! Thank you xxxxx MWAH!!!
properties (22)
post_id70,451,854
authorjaynie
permlinkre-matkodurko-re-jaynie-re-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190221t153812161z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-02-21 15:38:15
last_update2019-02-21 15:38:15
depth3
children0
net_rshares0
last_payout2019-02-28 15:38:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length51
author_reputation355,722,315,917,077
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@worldcapture ·
That's really cool man! I've never heard or thought about something like that. Thanks for posting about it!
properties (22)
post_id70,453,552
authorworldcapture
permlinkre-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190221t162534534z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak\/1.7.2b"}
created2019-02-21 16:25:36
last_update2019-02-21 16:25:36
depth1
children0
net_rshares0
last_payout2019-02-28 16:25:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length107
author_reputation89,811,786,096,069
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nurseanne84 ·
Hello! 

This is the first time that I have heard of boxwise but, thank you for the info. 

>App also grants every camp resident (refugee) X amount of "drops" every moth which a "virtual currency" used to buy clothes from the donations. This is very important as this gives refugees the control over what they wear and how they identify themselves. It's a very important psycho-social activity which they lost!

This is important as some people especially those fleeing from war or famine felt that they lost everything including their dignity as a human being. Giving them choices and control liberates them in some way.
properties (22)
post_id70,591,263
authornurseanne84
permlinkre-matkodurko-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190225t023211134z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-02-25 02:32:12
last_update2019-02-25 02:32:12
depth1
children0
net_rshares0
last_payout2019-03-04 02:32:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length621
author_reputation13,733,390,773,994
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@utopian-io ·
Hey, @matkodurko!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
post_id70,677,978
authorutopian-io
permlinkre-boxwise-fair-donations-distribution-to-refugees-generating-packages-in-bulk-new-feature-20190226t152005z
categoryutopian-io
json_metadata{"app":"beem\/0.20.17"}
created2019-02-26 15:20:06
last_update2019-02-26 15:20:06
depth1
children0
net_rshares0
last_payout2019-03-05 15:20:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length592
author_reputation152,913,012,544,965
root_title"[Boxwise - fair donations distribution to refugees] Generating packages in bulk - new feature"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000