InvManage.models.reuse

Module Contents

Classes

ShippingAddress

Model of the shipping address.

Communication

Model of the communication information.

PurchaseData

Model of the purchase data.

BankAccount

Model of the bank account details.

class InvManage.models.reuse.ShippingAddress

Bases: django.db.models.Model

Model of the shipping address.

title

Title of the firm.

Type

str

name

Name of the firm.

Type

str

phone

Contact number of the firm.

Type

str

address

Postal address.

Type

str

city

City.

Type

str

state

State.

Type

str

country

Country.

Type

str

website

Official website of the firm.

Type

URLField

post

Postal code of the firm.

Type

str

title
name
phone
address
city
state
country
website
post
class InvManage.models.reuse.Communication

Bases: django.db.models.Model

Model of the communication information.

language

Language of communication.

Type

str

phone

Contact number of the firm.

Type

str

email

E-mail of the contact person.

Type

EmailField

fax

Fax number.

Type

str

language
phone
email
fax
class InvManage.models.reuse.PurchaseData

Bases: django.db.models.Model

Model of the purchase data.

currency

Currency of purchase.

Type

str

minorder

Minimum order quantity.

Type

int

contactperson

Name of the contact person.

Type

str

refcode

Reference code.

Type

str

transportmode

Mode of transport of the shipment.

Type

str

currency
minorder
contactperson
refcode
transportmode
class InvManage.models.reuse.BankAccount

Bases: django.db.models.Model

Model of the bank account details.

name

Name of the bank.

Type

str

branch

Branch number of the bank.

Type

str

region

City in which the branch is located.

Type

str

route

Transit number.

Type

str

number

Bank account number.

Type

int

acctype

Type of bank account.

Type

str

iban

IBAN number.

Type

str

code

Bank code.

Type

str

branchcode

Branch code.

Type

str

name
branch
region
route
number
acctype
iban
code
branchcode