Skip to main content

Resourse Planning System

Project description

ERP is resource planning system. This is very early version not for using.

Package is being developed in general for modeling and expected to be used as advanced task management solution at the current stage.

First beta will roll out late july and will contain all to work with enterprise material and technical base. After beta release work over finance component would be done.

Detailed documentation would appear in the “docs” directory with beta release.

Changelog

June 20, 2014::

  • Added m2m ‘res’ field to task model with reverse generic relation to ‘taskres’ model

  • Refactored extras.views.AjaxFormMixin to support update form

June 16, 2014::

  • Added ‘extras’ package, which will contain mixins, fields and abstracts

  • Ajax methods develop started with extras.views.AjaxFormMixin

  • Done some monkey work with resource serialization

Quick start

  1. Add package apps to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'rest_framework',
        'enterprise',
        'planning',
    )
  2. Include the polls URLconf in your project urls.py like this:

    url(r'^pm/', include('planning.urls')),
    url(r'^structure/', include('enterprise.urls')),
    url(r'^resource/$', planning.views.ResListView.as_view()),
    url(r'^accounts/login/$', 'django.contrib.auth.views.login'),
    url(r'^accounts/reg/$', 'enterprise.views.register'),
    url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
  3. Add custom auth app to your project settings.py like this:

    AUTH_USER_MODEL = ‘enterprise.CorpUser’

  4. Run python manage.py syncdb to create models.

  5. Copy templates and static files from package file to your project’s dir.

  6. Visit http://127.0.0.1:8000/ to get started.

  7. Forgive me ^_^

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ERP-0.15.tar.gz (65.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page