The entity that owns PointOfSale and contracts with Cashier to receipt
payments and vend tokens using the payment system. Vendor has a private
contract with and is managed by Merchant who is a type of Organisation.
Vendor is accountable to Merchant for revenue collected, who is in turn
accountable to Supplier.
|
|
__init__(self,
PointOfSales=None,
MerchantAccount=None,
Cashiers=None,
VendorShifts=None,
*args,
**kw_args)
Initialises a new 'Vendor' instance. |
|
|
|
|
| addCashiers(self,
*Cashiers) |
|
|
|
|
| addPointOfSales(self,
*PointOfSales) |
|
|
|
|
| addVendorShifts(self,
*VendorShifts) |
|
|
|
|
getCashiers(self)
All Cachiers managed by this Vendor. |
|
|
|
|
getMerchantAccount(self)
Merchant account against which this vendor sells tokens or recept
payments. |
|
|
|
|
getPointOfSales(self)
All points of sale this Vendor controls. |
|
|
|
|
getVendorShifts(self)
All vendor shifts opened and owned by this vendor. |
|
|
|
|
| removeCashiers(self,
*Cashiers) |
|
|
|
|
| removePointOfSales(self,
*PointOfSales) |
|
|
|
|
| removeVendorShifts(self,
*VendorShifts) |
|
|
|
|
|
|
|
| setMerchantAccount(self,
value) |
|
|
|
|
| setPointOfSales(self,
value) |
|
|
|
|
| setVendorShifts(self,
value) |
|
|
|
Inherited from IEC61970.Core.IdentifiedObject'.IdentifiedObject:
getModelingAuthoritySet,
setModelingAuthoritySet
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|