Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 2

SME's, freelancers or foundations activity management application for the web. Includes financial management, invoices generation and customer management. European-based and rapidly growing in features. Beautifully designed.

4.5
   
  4 reviews  |  21 users  |  577,864 lines of code  |  30 current contributors  |  Analyzed 8 days ago
 
 

webERP is a multi-language. multi-inventory location, multi-currency web based accounting/ERP software encompassing: - Sales orders with kitsets and assemblies - Invoicing - Accounts Receiveable - User definable sales analysis reports - Purchasing with preferred and alternative suppliers - ... [More] Accounts Payable - Inventory - General Ledger integrated with all modules - Manufacturing with multi-level bills - Shipment Costing - Standard or Weighted average costing - Serialised and Lot/Batch Controlled Inventory - Advanced tax allows multiple taxes and rates - Contracts Reports are produced to pdf and emailable. Role based security model Single installation of the code can be used for multiple companies Scripts are optimized for performance under bandwith restricted connections. [Less]

4.33333
   
  1 review  |  13 users  |  626,005 lines of code  |  10 current contributors  |  Analyzed 8 days ago
 
 

eFaps is a framework used to map objects with or without attached files to a relational database and optional file systems (only for attaches files).

0
 
  0 reviews  |  5 users  |  287,590 lines of code  |  9 current contributors  |  Analyzed 9 days ago
 
 

Vendorlibs for CodeIgniter is intended to allow for easily adding third party (vendor) packages to the include path without requiring one to modify the include path. Inspired by CakePHP's Vendor concept.

0
 
  0 reviews  |  1 user  |  86 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

Main application for tchelinux meetings management.

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

CK-ERP is an open source accounting / MRP / ERP / CRM system that runs on top of multiple middlewares. It provides accounting and back office functionalities to SMEs and utilizes the underlying middleware to administer accounts/groups. It comprises 22 modules - Administration, Multilingual ... [More] Facility, Contact Management, Customer Relationship, Customer Self Service, Vendor Relationship, Material Requirement Planning, Warehouse, Inventory, Service, Accounting Ledger, Bank Reconciliation, Accounts Payable, Accounts Receivable, Purchase Order, Sales Order, Quotation, POS for Cashier, POS for Manager, Human Resources, Staff Self Service and Payroll. Operating platform can either be LAMP or LAPP. Backend database engine can be anyone of MySQL, PostgreSQL and SQLite. [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

No hassles ecommerce for individuals. Includes: payments via PayPal API, provider-based design, standard and premium memberships, products by multiple vendors.

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

django-reploc is a project that allows you to install a Google Map on your site to display and filter "representatives" for your site. These representatives may be dealers/vendors for your products, your friends or business associates, or just places you've been and want to advertise. ... [More] I built the application to be a dealer locator, but I realize the value in an application like this and tried to make it as generic as possible. FeaturesUnlimited number of representatives. Unlimited number of locations per representative. Automatic latitude/longitude determination for locations. If there's a problem determining the coordinates to the address, you can enter them manually. Locations can have "attributes." This is a way of specifying, for example, which locations carry which lines of your products. You can decide whether you want to use JavaScript or Python to do the heavy lifting. Users can search for locations within a radius of an address they specify. Offer your users driving directions to various representative locations. Requirementsdjango-reploc requires at least Django 1.0. For automatic coordinate determination, django-reploc requires the geopy library. This can be installed using easy_install geopy. The application also requires that you have a Google Maps API key. To get one of those, simply go to the Google Maps API page and fill out the necessary information. Finally, django-reploc relies heavily upon jQuery in order to operate. I used the latest version of jQuery, which is currently 1.2.6. InstallationDownload django-reploc using one of the following methods: easy_installYou can download the package from the CheeseShop or use easy_install django-replocto download and install django-reploc. Package DownloadDownload the latest .tar.gz file from the downloads section and extract it somewhere you'll remember. Use python setup.py install to install it. Checkout from SubversionExecute the following command (or use the equivalent function in a GUI such as TortoiseSVN), and make sure you're checking Pendulum out somewhere on the PYTHONPATH. svn co http://django-reploc.googlecode.com/svn/trunk/reploc replocVerifying InstallationThe easiest way to ensure that you have successfully installed Pendulum is to execute a command such as: python -c "import reploc; print reploc.get_version()"If that displays the version of django-reploc that you tried to install, you're good to roll. If you see something other than that, you probably need to check your PYTHONPATH environment variable. ConfigurationFirst of all, you must add this project to your list of INSTALLED_APPS in settings.py: INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', ... 'reploc', ... )Next you should add the context processor to your TEMPLATE_CONTEXT_PROCESSORS setting so the templates have access to the Google Maps API key. You don't really need this step if you're going to put the API key straight into your template. TEMPLATE_CONTEXT_PROCESSORS = ( 'django.core.context_processors.auth', 'django.core.context_processors.i18n', 'django.core.context_processors.media', 'reploc.context_processors.representatives', )Define your Google Maps API key in your settings.py file GOOGLE_MAPS_KEY = 'sdfsafasfdasfdasdf'Additionally, you may specify whether you would like the grunt work (distance calculations and whatnot) handled by JavaScript or Python: REPLOC_USE_JS = FalseThis will probably never be used much, but it's there just in case. The application defaults to using JavaScript. Run manage.py syncdb. This creates a few tables in your database that are necessary for operation. Next, you should add an entry to your main urls.py file. For example: from django.conf.urls.defaults import * from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', (r'^admin/(.*)', admin.site.root), (r'^locator/', include('reploc.urls')), )Finally, you'll probably want to copy the media files that I use in django-reploc, unless you have some of your own. Those files can be found in the /media/ directory of the project. There are really only two files that you should need to copy to your media directory: reploc/media/js/jquery-1.3.1.min.js and reploc/media/img/ajax.gif (see http://code.google.com/p/django-reploc/source/browse/#svn/trunk/reploc/media for the specific files). Alternatively, you may just override the templates to use whatever you want. I make no guarantees that the application will still work if you do that though ;) UsageAs soon as you have all of the configuration taken care of, simply fire up your site (or restart it) and jump into the Django administration interface. You can add locations straight from the "Add Representative" page if you'd like. When you're done, head on over to http://www.yourwebsite.com/locator/ (or whatever it happens to be in your case) to see the application in action. Updating Location CoordinatesI've created a utility to help you update the location coordinates if you feel the need. They should be updated each time you save a location, but if you want to update all of the locations in one swing, you can use the command ./manage.py reploc_update_coords. [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

No hassles ecommerce for individuals. Includes: payments via PayPal API, provider-based design, standard and premium memberships, products by multiple vendors.

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

This system will allow make appointment for a vendors.

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 3 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.