InvManage.forms.vendor_forms

Module Contents

Classes

VendorForm

Form for basic informaion of the vendor.

ShippingAddressForm

For for shipping address.

CommunicationForm

Form for communication information.

PurchaseDataForm

Form for purchase related data.

BankAccountForm

Form for bank account details.

class InvManage.forms.vendor_forms.VendorForm

Bases: django.forms.Form

Form for basic informaion of the vendor.

name

Name of the vendor.

Type

str

identifier

Unique identifier of the vendor.

Type

str

gstin

GSTIN number of the vendor.

Type

str

prefix = vend
context
name
identifier
gstin
class InvManage.forms.vendor_forms.ShippingAddressForm

Bases: django.forms.Form

For for 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

prefix = ship
context
title
name
phone
address
city
state
country
website
post
class InvManage.forms.vendor_forms.CommunicationForm

Bases: django.forms.Form

Form for 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

prefix = com
context
language
phone
email
fax
class InvManage.forms.vendor_forms.PurchaseDataForm

Bases: django.forms.Form

Form for purchase related 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

prefix = pdform
context
currency
minorder
contactperson
refcode
transportmode
class InvManage.forms.vendor_forms.BankAccountForm

Bases: django.forms.Form

Form for 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

prefix = bank
context
name
branch
region
route
number
acctype
iban
code
branchcode