The Omni Group
These forums are now read-only. Please visit our new forums to participate in discussion. A new account will be required to post in the new forums. For more info on the switch, see this post. Thank you!

Go Back   The Omni Group Forums > OmniPlan > OmniPlan General
FAQ Members List Calendar Today's Posts

 
exporting "shopping" lists Thread Tools Search this Thread Display Modes
hello,

I am using omni plan for managing a 12 week construction project. having gone to the trouble of assigning resources to all the tasks, is there any way I can export lists of materials (with quantities) to send to suppliers, ideally filtered according to group? I.e. if I group all electrical components together, I can send a list of these to the electrical supplier?

I have no html experience and so cannot as yet create my own templates.

thanks, in anticipation
 
There isn't a way to filter just the materials and export a list currently. If you are grouping your resources the quickest method would be to collapse all the groups except the materials group, then export a outline only PDF. Your electrical supplier will see the other group headings in the outline, but at least he/she will also get a list of materials you need along with the quantities.
 
thanks for your reply; thats what I ended up doing - crude but effective.

Can I say that, although I like omniplan very much, this is perhaps a bit of an oversight; I am sure it wouldn't actually be too difficult to allow filters to act on resource lists or to export filtered lists in CSV /text format. Surely purchasing is a crucial part of most projects

Any plans for the future? is it something I could do using HTML / CSS if I took the trouble to learn?
 
The format of the HTML files is pretty straightforward. The resource report gets emitted in the same order as the resources are listed in the document's resource view. If your resources look like this:



You'll get a report that looks like this:



The HTML to produce this is pretty easy to read, even if you don't know anything about HTML. You just have to remember that HTML expects symmetry (bookends, if you will).

In the example above, the materials listing starts with HTML code like this:

Code:
            <tr class="resource Group">
                <td style="padding-left: 10px;">materials</td>
                <td></td>
                <td></td>
                <td></td>
                <td></td>
                <td></td>
            </tr>
            
            <tr class="resource Material">
                <td style="padding-left: 20px;">Widgets</td>
                <td>10/8/08 8:00 AM</td>
                <td>10/8/08 4:00 PM</td>
                <td>7h</td>
                <td>0%</td>
                <td></td>
            </tr>
and later the staff resources start with:

Code:
            <tr class="resource Group">
                <td style="padding-left: 10px;">staff</td>
                <td></td>
                <td></td>
                <td></td>
                <td></td>
                <td></td>
            </tr>
            
            <tr class="resource Staff">
                <td style="padding-left: 20px;">Me</td>
                <td>10/8/08 8:00 AM</td>
                <td>10/8/08 4:15 PM</td>
                <td>7h 15m</td>
                <td>0%</td>
                <td></td>
            </tr>
Those are pretty easy structures to recognize, I trust you'll agree. The table rows start with <tr blah blah blah> and end with </tr>. Inside the row structure are the table data elements <td (optional styling)>(table data)</td>, one per column in the row.

Now, if you want to convert the original report to show only the materials resource section, using your favorite text editor, remove all but the materials resource section from that part of the file, leaving the closing portion of the file as shown below:

Code:
            
            </table>
        <p/>
        <p class="footer">Exported 10/11/08</p>
        <p class="footer">OmniPlan&nbsp;1.6.1 beta 1&nbsp;by <a href="http://www.omnigroup.com">The Omni Group</a></p>
    </body>
</html>
 
thanks for that; I will give it a go
 
 




Similar Threads
Thread Thread Starter Forum Replies Last Post
Filenames w/chars like "ä" cause error exporting to O. Sync Server. [Bug; will fix.] devastat OmniOutliner for iPad 5 2011-05-12 11:03 AM
Single action lists as "bins" r48 OmniFocus 1 for Mac 7 2010-08-26 05:24 PM
"Temporary" Single-Action Lists? scrounger Applying OmniFocus 3 2010-04-11 01:17 AM
Best practice to manages general "lists"? tlester Applying OmniFocus 12 2009-05-24 06:31 AM
How to sort daily to do lists from "big list" tah OmniFocus 1 for Mac 20 2008-03-19 09:26 AM


All times are GMT -8. The time now is 08:21 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.