Skip to main content

composite foreignkey support for django

Project description

Данный пакет - это fork https://github.com/michael-k/django-composite-foreignkey/tree/django32-python39. Создан по причине того, что оригинальный https://github.com/onysos/django-composite-foreignkey не принимает PR https://github.com/onysos/django-composite-foreignkey/pull/18 длительное время. Возможно, первоначальный дистрибутив заброшен и больше не используется. Информация ниже является текстом оригинала и оставлена без изменений.

allow to create a django foreignkey that don’t link with pk of other model, but with multi column matching local model columns or fixed values.

https://img.shields.io/travis/onysos/django-composite-foreignkey/master.svg https://readthedocs.org/projects/django-composite-foreignkey/badge/?version=latest https://img.shields.io/coveralls/onysos/django-composite-foreignkey/master.svg Latest PyPI version Number of PyPI downloads per month

some databases have a composite Primary Key, leading to impossiblity for a django foreign key to be used.

today, Django don’t support Composite Primary Key see ticket and ForeignKey don’t support multicolumn. but fortunaly, the base class of ForeignKey support it well, so this lib just add a little wrapper around ForeignObject to make it more usefull. the real add of this implementation is that is support the customisation of the link with Raw values.

this implementation of CompositeForeignKey skip the complexity of Composite Primary Key by forcing the providing of the corresponding column of the other model, not forcefully a PrimaryKey.

Installation

  1. Install using pip:

    pip install django-composite-foreignkey

  2. Alternatively, you can install download or clone this repo and call

    pip install -e ..

Example

you have this model

class Customer(models.Model):

    company = models.IntegerField()
    customer_id = models.IntegerField()
    name = models.CharField(max_length=255)
    address = CompositeForeignKey(Address, on_delete=CASCADE, to_fields={
        "tiers_id": "customer_id",
        "company": LocalFieldValue("company"),
        "type_tiers": RawFieldValue("C")
    })

    class Meta(object):
        unique_together = [
            ("company", "customer_id"),
        ]


class Contact(models.Model):
    company_code = models.IntegerField()
    customer_code = models.IntegerField()
    surname = models.CharField(max_length=255)
    # virtual field
    customer = CompositeForeignKey(Customer, on_delete=CASCADE, related_name='contacts', to_fields={
        "customer_id": "customer_code",
        "company": "company_code"
    })

you can use Contact.customer like any ForeignKey, but behinde the scene, it will query the Customer Table using company and customer id’s.

Documentation

The full documentation is at http://django-composite-foreignkey.readthedocs.org/en/latest/.

Requirements

  • Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9

  • Django 1.11, 2.0, 2.1, 2.2, 3.1, 3.2

Contributions and pull requests for other Django and Python versions are welcome.

Bugs and requests

If you have found a bug or if you have a request for additional functionality, please use the issue tracker on GitHub.

https://github.com/onysos/django-composite-foreignkey/issues

License

You can use this under GPLv3.

Author

Original author & Development lead: Darius BERNARD.

Thanks

Thanks to django for this amazing framework. And thanks to django-bootstrap3 to the structure of the apps.

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

m3-django-composite-foreignkey-1.0.3.tar.gz (25.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

m3_django_composite_foreignkey-1.0.3-py2.py3-none-any.whl (22.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file m3-django-composite-foreignkey-1.0.3.tar.gz.

File metadata

File hashes

Hashes for m3-django-composite-foreignkey-1.0.3.tar.gz
Algorithm Hash digest
SHA256 a01309c30d228ea1b200c1d0c920e486afa4e2c42ba9251a9b1551f1279e74a9
MD5 f212331cb8b4ddd25fa4f65d8dd5e713
BLAKE2b-256 8bfc3e032e9a6859bc0fb205bc024361080d8737888a87484f37d393817cd3d5

See more details on using hashes here.

File details

Details for the file m3_django_composite_foreignkey-1.0.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for m3_django_composite_foreignkey-1.0.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6631bc569c03281825fa6bfbc62efb41b7c394b075e2f22342f7dccb44d36672
MD5 65a9245dec51dcab8d310c6c09a95cb0
BLAKE2b-256 d17511cfb8ed27198c986a54cc899ef0b406f119a301951bc2be0e9320ed56ff

See more details on using hashes here.

Supported by

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