six910mysql

package module
v1.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 27, 2022 License: GPL-3.0 Imports: 7 Imported by: 1

README

Six910 Shopping Cart MySQL database module

This module the MySQL database module that plugs into the Six910 Shopping Cart and E-commerce system.

Go Report Card

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MockSix910Mysql

type MockSix910Mysql struct {
	DB  dbi.Database
	Log *lg.Logger

	MockAddSecuritySuccess    bool
	MockSecurityID            int64
	MockUpdateSecuritySuccess bool
	MockSecurity              *mdb.Security
	MockDeleteSecuritySuccess bool

	MockAddStoreSuccess    bool
	MockStoreID            int64
	MockUpdateStoreSuccess bool
	MockStore              *mdb.Store
	MockStoreCount         int64
	MockDeleteStoreSuccess bool

	MockAddCustomerSuccess    bool
	MockCustomerID            int64
	MockUpdateCustomerSuccess bool
	MockCustomer              *mdb.Customer
	MockCustomerList          *[]mdb.Customer
	MockDeleteCustomerSuccess bool

	MockAddLocalAccountSuccess    bool
	MockLocalAccountID            int64
	MockUpdateLocalAccountSuccess bool
	MockLocalAccount              *mdb.LocalAccount
	MockLocalAccountList          *[]mdb.LocalAccount
	MockDeleteLocalAccountSuccess bool

	MockAddDistributorSuccess    bool
	MockDistributorID            int64
	MockUpdateDistributorSuccess bool
	MockDistributor              *mdb.Distributor
	MockDistributorList          *[]mdb.Distributor
	MockDeleteDistributorSuccess bool

	MockAddCartSuccess    bool
	MockCartID            int64
	MockUpdateCartSuccess bool
	MockCart              *mdb.Cart
	MockCartList          *[]mdb.Cart
	MockDeleteCartSuccess bool

	MockAddCartItemSuccess    bool
	MockCartItemID            int64
	MockUpdateCartItemSuccess bool
	MockCartItem              *mdb.CartItem
	MockCartItemList          *[]mdb.CartItem
	MockDeleteCartItemSuccess bool

	MockAddAddressSuccess    bool
	MockAddressID            int64
	MockUpdateAddressSuccess bool
	MockAddress              *mdb.Address
	MockAddressList          *[]mdb.Address
	MockDeleteAddressSuccess bool

	MockAddCategorySuccess    bool
	MockCategoryID            int64
	MockUpdateCategorySuccess bool
	MockCategory              *mdb.Category
	MockCategoryList          *[]mdb.Category
	MockDeleteCategorySuccess bool

	MockAddShippingMethodSuccess    bool
	MockShippingMethodID            int64
	MockUpdateShippingMethodSuccess bool
	MockShippingMethod              *mdb.ShippingMethod
	MockShippingMethodList          *[]mdb.ShippingMethod
	MockDeleteShippingMethodSuccess bool

	MockAddInsuranceSuccess    bool
	MockInsuranceID            int64
	MockUpdateInsuranceSuccess bool
	MockInsurance              *mdb.Insurance
	MockInsuranceList          *[]mdb.Insurance
	MockDeleteInsuranceSuccess bool

	MockAddProductSuccess            bool
	MockProductID                    int64
	MockUpdateProductSuccess         bool
	MockUpdateProductQuantitySuccess bool
	MockProduct                      *mdb.Product
	MockProductList                  *[]mdb.Product
	MockProductSubSkuList            *[]mdb.Product
	MockProductSearchList            *[]mdb.Product
	MockProductIDList                *[]int64
	MockDeleteProductSuccess         bool
	MockDeleteSubProductSuccess      bool

	MockAddRegionSuccess    bool
	MockRegionID            int64
	MockUpdateRegionSuccess bool
	MockRegion              *mdb.Region
	MockRegionList          *[]mdb.Region
	MockDeleteRegionSuccess bool

	MockAddSubRegionSuccess    bool
	MockSubRegionID            int64
	MockUpdateSubRegionSuccess bool
	MockSubRegion              *mdb.SubRegion
	MockSubRegionList          *[]mdb.SubRegion
	MockDeleteSubRegionSuccess bool

	MockAddExcludedSubRegionSuccess    bool
	MockExcludedSubRegionID            int64
	MockUpdateExcludedSubRegionSuccess bool
	MockExcludedSubRegion              *mdb.ExcludedSubRegion
	MockExcludedSubRegionList          *[]mdb.ExcludedSubRegion
	MockDeleteExcludedSubRegionSuccess bool

	MockAddIncludedSubRegionSuccess    bool
	MockIncludedSubRegionID            int64
	MockUpdateIncludedSubRegionSuccess bool
	MockIncludedSubRegion              *mdb.IncludedSubRegion
	MockIncludedSubRegionList          *[]mdb.IncludedSubRegion
	MockDeleteIncludedSubRegionSuccess bool

	MockAddZoneZipSuccess    bool
	MockZoneZipID            int64
	MockUpdateZoneZipSuccess bool
	MockZoneZipRegion        *mdb.ZoneZip
	MockZoneZipList          *[]mdb.ZoneZip
	MockDeleteZoneZipSuccess bool

	MockAddProductCategorySuccess    bool
	MockProductCategoryID            int64
	MockUpdateProductCategorySuccess bool
	MockProductCategoryRegion        *mdb.ProductCategory
	MockProductCategoryList          *[]mdb.ProductCategory
	MockDeleteProductCategorySuccess bool
	MockCategoryIDList               *[]int64

	MockAddOrderSuccess    bool
	MockOrderID            int64
	MockUpdateOrderSuccess bool
	MockOrder              *mdb.Order
	MockOrderList          *[]mdb.Order
	MockOrderCountData     *[]mdb.OrderCountData
	MockOrderSalesData     *[]mdb.OrderSalesData
	MockDeleteOrderSuccess bool

	MockAddOrderItemSuccess    bool
	MockOrderItemID            int64
	MockUpdateOrderItemSuccess bool
	MockOrderItem              *mdb.OrderItem
	MockOrderItemList          *[]mdb.OrderItem
	MockDeleteOrderItemSuccess bool

	MockAddOrderCommentSuccess    bool
	MockOrderCommentID            int64
	MockUpdateOrderCommentSuccess bool
	MockOrderComment              *mdb.OrderComment
	MockOrderCommentList          *[]mdb.OrderComment
	MockDeleteOrderCommentSuccess bool

	MockAddOrderTransactionSuccess    bool
	MockOrderTransactionID            int64
	MockUpdateOrderTransactionSuccess bool
	MockOrderTransaction              *mdb.OrderTransaction
	MockOrderTransactionList          *[]mdb.OrderTransaction
	MockDeleteOrderTransactionSuccess bool

	MockAddShipmentSuccess    bool
	MockShipmentID            int64
	MockUpdateShipmentSuccess bool
	MockShipment              *mdb.Shipment
	MockShipmentList          *[]mdb.Shipment
	MockDeleteShipmentSuccess bool

	MockAddShipmentBoxSuccess    bool
	MockShipmentBoxID            int64
	MockUpdateShipmentBoxSuccess bool
	MockShipmentBox              *mdb.ShipmentBox
	MockShipmentBoxList          *[]mdb.ShipmentBox
	MockDeleteShipmentBoxSuccess bool

	MockAddShipmentItemSuccess    bool
	MockShipmentItemID            int64
	MockUpdateShipmentItemSuccess bool
	MockShipmentItem              *mdb.ShipmentItem
	MockShipmentItemList          *[]mdb.ShipmentItem
	MockDeleteShipmentItemSuccess bool

	MockAddPluginSuccess    bool
	MockPluginID            int64
	MockUpdatePluginSuccess bool
	MockPlugin              *mdb.Plugins
	MockPluginList          *[]mdb.Plugins
	MockDeletePluginSuccess bool

	MockAddStorePluginSuccess    bool
	MockStorePluginID            int64
	MockUpdateStorePluginSuccess bool
	MockStorePlugin              *mdb.StorePlugins
	MockStorePluginList          *[]mdb.StorePlugins
	MockDeleteStorePluginSuccess bool

	MockAddPaymentGatewaySuccess    bool
	MockPaymentGatewayID            int64
	MockUpdatePaymentGatewaySuccess bool
	MockPaymentGateway              *mdb.PaymentGateway
	MockPaymentGatewayList          *[]mdb.PaymentGateway
	MockDeletePaymentGatewaySuccess bool

	MockAddShippingCarrierSuccess    bool
	MockShippingCarrierID            int64
	MockUpdateShippingCarrierSuccess bool
	MockShippingCarrier              *mdb.ShippingCarrier
	MockShippingCarrierList          *[]mdb.ShippingCarrier
	MockDeleteShippingCarrierSuccess bool

	MockAddLocalDataStoreSuccess    bool
	MockLocalDataStoreID            int64
	MockUpdateLocalDataStoreSuccess bool
	MockLocalDataStore              *mdb.LocalDataStore
	MockLocalDataStoreList          *[]mdb.LocalDataStore
	MockDeleteLocalDataStoreSuccess bool

	MockAddInstancesSuccess    bool
	MockInstancesID            int64
	MockUpdateInstancesSuccess bool
	MockInstances              *mdb.Instances
	MockInstancesList          *[]mdb.Instances
	MockDeleteInstancesSuccess bool

	MockAddDataStoreWriteLockSuccess    bool
	MockDataStoreWriteLockID            int64
	MockUpdateDataStoreWriteLockSuccess bool
	MockDataStoreWriteLock              *mdb.DataStoreWriteLock
	MockDataStoreWriteLockList          *[]mdb.DataStoreWriteLock
	MockDeleteDataStoreWriteLockSuccess bool

	MockAddTaxRateSuccess    bool
	MockTaxRateID            int64
	MockUpdateTaxRateSuccess bool
	MockTaxRate              *mdb.TaxRate
	MockTaxRateList          *[]mdb.TaxRate
	MockDeleteTaxRateSuccess bool

	MockManufacturerList *[]string

	MockAddVisitorResp bool
	MockVisitorData    *[]mdb.VisitorData
}

MockSix910Mysql MockSix910Mysql

func (*MockSix910Mysql) AddAddress

func (d *MockSix910Mysql) AddAddress(a *mdb.Address) (bool, int64)

AddAddress AddAddress

func (*MockSix910Mysql) AddCart

func (d *MockSix910Mysql) AddCart(c *mdb.Cart) (bool, int64)

AddCart AddCart

func (*MockSix910Mysql) AddCartItem

func (d *MockSix910Mysql) AddCartItem(ci *mdb.CartItem) (bool, int64)

AddCartItem AddCartItem

func (*MockSix910Mysql) AddCategory

func (d *MockSix910Mysql) AddCategory(c *mdb.Category) (bool, int64)

AddCategory AddCategory

func (*MockSix910Mysql) AddCustomer

func (d *MockSix910Mysql) AddCustomer(c *mdb.Customer) (bool, int64)

AddCustomer AddCustomer

func (*MockSix910Mysql) AddDataStoreWriteLock

func (d *MockSix910Mysql) AddDataStoreWriteLock(w *mdb.DataStoreWriteLock) bool

AddDataStoreWriteLock AddDataStoreWriteLock

func (*MockSix910Mysql) AddDistributor

func (d *MockSix910Mysql) AddDistributor(ds *mdb.Distributor) (bool, int64)

AddDistributor AddDistributor

func (*MockSix910Mysql) AddExcludedSubRegion

func (d *MockSix910Mysql) AddExcludedSubRegion(e *mdb.ExcludedSubRegion) (bool, int64)

AddExcludedSubRegion AddExcludedSubRegion

func (*MockSix910Mysql) AddIncludedSubRegion

func (d *MockSix910Mysql) AddIncludedSubRegion(e *mdb.IncludedSubRegion) (bool, int64)

AddIncludedSubRegion AddIncludedSubRegion

func (*MockSix910Mysql) AddInstance

func (d *MockSix910Mysql) AddInstance(i *mdb.Instances) bool

AddInstance AddInstance

func (*MockSix910Mysql) AddInsurance

func (d *MockSix910Mysql) AddInsurance(i *mdb.Insurance) (bool, int64)

AddInsurance AddInsurance

func (*MockSix910Mysql) AddLocalAccount

func (d *MockSix910Mysql) AddLocalAccount(a *mdb.LocalAccount) bool

AddLocalAccount AddLocalAccount

func (*MockSix910Mysql) AddLocalDatastore

func (d *MockSix910Mysql) AddLocalDatastore(ds *mdb.LocalDataStore) bool

AddLocalDatastore AddLocalDatastore

func (*MockSix910Mysql) AddOrder

func (d *MockSix910Mysql) AddOrder(o *mdb.Order) (bool, int64)

AddOrder AddOrder

func (*MockSix910Mysql) AddOrderComments

func (d *MockSix910Mysql) AddOrderComments(c *mdb.OrderComment) (bool, int64)

AddOrderComments AddOrderComments

func (*MockSix910Mysql) AddOrderItem

func (d *MockSix910Mysql) AddOrderItem(i *mdb.OrderItem) (bool, int64)

AddOrderItem AddOrderItem

func (*MockSix910Mysql) AddOrderTransaction

func (d *MockSix910Mysql) AddOrderTransaction(t *mdb.OrderTransaction) (bool, int64)

AddOrderTransaction AddOrderTransaction

func (*MockSix910Mysql) AddPaymentGateway

func (d *MockSix910Mysql) AddPaymentGateway(pgw *mdb.PaymentGateway) (bool, int64)

AddPaymentGateway AddPaymentGateway

func (*MockSix910Mysql) AddPlugin

func (d *MockSix910Mysql) AddPlugin(p *mdb.Plugins) (bool, int64)

AddPlugin AddPlugin

func (*MockSix910Mysql) AddProduct

func (d *MockSix910Mysql) AddProduct(p *mdb.Product) (bool, int64)

AddProduct AddProduct

func (*MockSix910Mysql) AddProductCategory

func (d *MockSix910Mysql) AddProductCategory(pc *mdb.ProductCategory) bool

AddProductCategory AddProductCategory

func (*MockSix910Mysql) AddRegion

func (d *MockSix910Mysql) AddRegion(r *mdb.Region) (bool, int64)

AddRegion AddRegion

func (*MockSix910Mysql) AddSecurity

func (d *MockSix910Mysql) AddSecurity(s *mdb.Security) (bool, int64)

AddSecurity AddSecurity

func (*MockSix910Mysql) AddShipment

func (d *MockSix910Mysql) AddShipment(s *mdb.Shipment) (bool, int64)

AddShipment AddShipment

func (*MockSix910Mysql) AddShipmentBox

func (d *MockSix910Mysql) AddShipmentBox(sb *mdb.ShipmentBox) (bool, int64)

AddShipmentBox AddShipmentBox

func (*MockSix910Mysql) AddShipmentItem

func (d *MockSix910Mysql) AddShipmentItem(si *mdb.ShipmentItem) (bool, int64)

AddShipmentItem AddShipmentItem

func (*MockSix910Mysql) AddShippingCarrier

func (d *MockSix910Mysql) AddShippingCarrier(c *mdb.ShippingCarrier) (bool, int64)

AddShippingCarrier AddShippingCarrier

func (*MockSix910Mysql) AddShippingMethod

func (d *MockSix910Mysql) AddShippingMethod(s *mdb.ShippingMethod) (bool, int64)

AddShippingMethod AddShippingMethod

func (*MockSix910Mysql) AddStore

func (d *MockSix910Mysql) AddStore(s *mdb.Store) (bool, int64)

AddStore AddStore

func (*MockSix910Mysql) AddStorePlugin

func (d *MockSix910Mysql) AddStorePlugin(sp *mdb.StorePlugins) (bool, int64)

AddStorePlugin AddStorePlugin

func (*MockSix910Mysql) AddSubRegion

func (d *MockSix910Mysql) AddSubRegion(s *mdb.SubRegion) (bool, int64)

AddSubRegion AddSubRegion

func (*MockSix910Mysql) AddTaxRate added in v1.0.20

func (d *MockSix910Mysql) AddTaxRate(t *mdb.TaxRate) (bool, int64)

AddTaxRate AddTaxRate

func (*MockSix910Mysql) AddVisit added in v1.0.33

func (d *MockSix910Mysql) AddVisit(v *mdb.Visitor) bool

AddVisit AddVisit

func (*MockSix910Mysql) AddZoneZip

func (d *MockSix910Mysql) AddZoneZip(z *mdb.ZoneZip) (bool, int64)

AddZoneZip AddZoneZip

func (*MockSix910Mysql) DeleteAddress

func (d *MockSix910Mysql) DeleteAddress(id int64) bool

DeleteAddress DeleteAddress

func (*MockSix910Mysql) DeleteCart

func (d *MockSix910Mysql) DeleteCart(id int64) bool

DeleteCart DeleteCart

func (*MockSix910Mysql) DeleteCartItem

func (d *MockSix910Mysql) DeleteCartItem(id int64) bool

DeleteCartItem DeleteCartItem

func (*MockSix910Mysql) DeleteCategory

func (d *MockSix910Mysql) DeleteCategory(id int64) bool

DeleteCategory DeleteCategory

func (*MockSix910Mysql) DeleteCustomer

func (d *MockSix910Mysql) DeleteCustomer(id int64) bool

DeleteCustomer DeleteCustomer

func (*MockSix910Mysql) DeleteDistributor

func (d *MockSix910Mysql) DeleteDistributor(id int64) bool

DeleteDistributor DeleteDistributor

func (*MockSix910Mysql) DeleteExcludedSubRegion

func (d *MockSix910Mysql) DeleteExcludedSubRegion(id int64) bool

DeleteExcludedSubRegion DeleteExcludedSubRegion

func (*MockSix910Mysql) DeleteIncludedSubRegion

func (d *MockSix910Mysql) DeleteIncludedSubRegion(id int64) bool

DeleteIncludedSubRegion DeleteIncludedSubRegion

func (*MockSix910Mysql) DeleteInsurance

func (d *MockSix910Mysql) DeleteInsurance(id int64) bool

DeleteInsurance DeleteInsurance

func (*MockSix910Mysql) DeleteLocalAccount

func (d *MockSix910Mysql) DeleteLocalAccount(username string, storeID int64) bool

DeleteLocalAccount DeleteLocalAccount

func (*MockSix910Mysql) DeleteOrder

func (d *MockSix910Mysql) DeleteOrder(id int64) bool

DeleteOrder DeleteOrder

func (*MockSix910Mysql) DeleteOrderItem

func (d *MockSix910Mysql) DeleteOrderItem(id int64) bool

DeleteOrderItem DeleteOrderItem

func (*MockSix910Mysql) DeletePaymentGateway

func (d *MockSix910Mysql) DeletePaymentGateway(id int64) bool

DeletePaymentGateway DeletePaymentGateway

func (*MockSix910Mysql) DeletePlugin

func (d *MockSix910Mysql) DeletePlugin(id int64) bool

DeletePlugin DeletePlugin

func (*MockSix910Mysql) DeleteProduct

func (d *MockSix910Mysql) DeleteProduct(id int64) bool

DeleteProduct DeleteProduct

func (*MockSix910Mysql) DeleteProductCategory

func (d *MockSix910Mysql) DeleteProductCategory(pc *mdb.ProductCategory) bool

DeleteProductCategory DeleteProductCategory

func (*MockSix910Mysql) DeleteRegion

func (d *MockSix910Mysql) DeleteRegion(id int64) bool

DeleteRegion DeleteRegion

func (*MockSix910Mysql) DeleteSecurity

func (d *MockSix910Mysql) DeleteSecurity() bool

DeleteSecurity DeleteSecurity

func (*MockSix910Mysql) DeleteShipment

func (d *MockSix910Mysql) DeleteShipment(id int64) bool

DeleteShipment DeleteShipment

func (*MockSix910Mysql) DeleteShipmentBox

func (d *MockSix910Mysql) DeleteShipmentBox(id int64) bool

DeleteShipmentBox DeleteShipmentBox

func (*MockSix910Mysql) DeleteShipmentItem

func (d *MockSix910Mysql) DeleteShipmentItem(id int64) bool

DeleteShipmentItem DeleteShipmentItem

func (*MockSix910Mysql) DeleteShippingCarrier

func (d *MockSix910Mysql) DeleteShippingCarrier(id int64) bool

DeleteShippingCarrier DeleteShippingCarrier

func (*MockSix910Mysql) DeleteShippingMethod

func (d *MockSix910Mysql) DeleteShippingMethod(id int64) bool

DeleteShippingMethod DeleteShippingMethod

func (*MockSix910Mysql) DeleteStore

func (d *MockSix910Mysql) DeleteStore(id int64) bool

DeleteStore DeleteStore

func (*MockSix910Mysql) DeleteStorePlugin

func (d *MockSix910Mysql) DeleteStorePlugin(id int64) bool

DeleteStorePlugin DeleteStorePlugin

func (*MockSix910Mysql) DeleteSubProduct added in v1.1.8

func (d *MockSix910Mysql) DeleteSubProduct(id int64) bool

DeleteSubProduct DeleteSubProduct

func (*MockSix910Mysql) DeleteSubRegion

func (d *MockSix910Mysql) DeleteSubRegion(id int64) bool

DeleteSubRegion DeleteSubRegion

func (*MockSix910Mysql) DeleteTaxRate added in v1.0.20

func (d *MockSix910Mysql) DeleteTaxRate(id int64) bool

DeleteTaxRate DeleteTaxRate

func (*MockSix910Mysql) DeleteZoneZip

func (d *MockSix910Mysql) DeleteZoneZip(id int64) bool

DeleteZoneZip DeleteZoneZip

func (*MockSix910Mysql) GetAddress

func (d *MockSix910Mysql) GetAddress(id int64) *mdb.Address

GetAddress GetAddress

func (*MockSix910Mysql) GetAddressList

func (d *MockSix910Mysql) GetAddressList(cid int64) *[]mdb.Address

GetAddressList GetAddressList

func (*MockSix910Mysql) GetCarItem

func (d *MockSix910Mysql) GetCarItem(cartID int64, prodID int64) *mdb.CartItem

GetCarItem GetCarItem

func (*MockSix910Mysql) GetCart

func (d *MockSix910Mysql) GetCart(cid int64) *mdb.Cart

GetCart GetCart

func (*MockSix910Mysql) GetCartItemList

func (d *MockSix910Mysql) GetCartItemList(cartID int64) *[]mdb.CartItem

GetCartItemList GetCartItemList

func (*MockSix910Mysql) GetCategory

func (d *MockSix910Mysql) GetCategory(id int64) *mdb.Category

GetCategory GetCategory

func (*MockSix910Mysql) GetCategoryList

func (d *MockSix910Mysql) GetCategoryList(storeID int64) *[]mdb.Category

GetCategoryList GetCategoryList

func (*MockSix910Mysql) GetCustomer

func (d *MockSix910Mysql) GetCustomer(email string, storeID int64) *mdb.Customer

GetCustomer GetCustomer

func (*MockSix910Mysql) GetCustomerID

func (d *MockSix910Mysql) GetCustomerID(id int64) *mdb.Customer

GetCustomerID GetCustomerID

func (*MockSix910Mysql) GetCustomerList

func (d *MockSix910Mysql) GetCustomerList(storeID int64, start int64, end int64) *[]mdb.Customer

GetCustomerList GetCustomerList

func (*MockSix910Mysql) GetCustomerUsers added in v1.0.34

func (d *MockSix910Mysql) GetCustomerUsers(cid int64, storeID int64) *[]mdb.LocalAccount

GetCustomerUsers GetCustomerUsers

func (*MockSix910Mysql) GetDataStoreWriteLock

func (d *MockSix910Mysql) GetDataStoreWriteLock(dataStore string, storeID int64) *mdb.DataStoreWriteLock

GetDataStoreWriteLock GetDataStoreWriteLock

func (*MockSix910Mysql) GetDistributor

func (d *MockSix910Mysql) GetDistributor(id int64) *mdb.Distributor

GetDistributor GetDistributor

func (*MockSix910Mysql) GetDistributorList

func (d *MockSix910Mysql) GetDistributorList(store int64) *[]mdb.Distributor

GetDistributorList GetDistributorList

func (*MockSix910Mysql) GetExcludedSubRegion

func (d *MockSix910Mysql) GetExcludedSubRegion(id int64) *mdb.ExcludedSubRegion

GetExcludedSubRegion GetExcludedSubRegion

func (*MockSix910Mysql) GetExcludedSubRegionList

func (d *MockSix910Mysql) GetExcludedSubRegionList(regionID int64) *[]mdb.ExcludedSubRegion

GetExcludedSubRegionList GetExcludedSubRegionList

func (*MockSix910Mysql) GetHierarchicalCategoryList added in v1.0.21

func (d *MockSix910Mysql) GetHierarchicalCategoryList(storeID int64) *[]mdb.Category

GetHierarchicalCategoryList GetHierarchicalCategoryList

func (*MockSix910Mysql) GetIncludedSubRegion

func (d *MockSix910Mysql) GetIncludedSubRegion(id int64) *mdb.IncludedSubRegion

GetIncludedSubRegion GetIncludedSubRegion

func (*MockSix910Mysql) GetIncludedSubRegionList

func (d *MockSix910Mysql) GetIncludedSubRegionList(regionID int64) *[]mdb.IncludedSubRegion

GetIncludedSubRegionList GetIncludedSubRegionList

func (*MockSix910Mysql) GetInstance

func (d *MockSix910Mysql) GetInstance(name string, dataStoreName string, storeID int64) *mdb.Instances

GetInstance GetInstance

func (*MockSix910Mysql) GetInstanceList added in v1.0.11

func (d *MockSix910Mysql) GetInstanceList(dataStoreName string, storeID int64) *[]mdb.Instances

GetInstanceList GetInstanceList

func (*MockSix910Mysql) GetInsurance

func (d *MockSix910Mysql) GetInsurance(id int64) *mdb.Insurance

GetInsurance GetInsurance

func (*MockSix910Mysql) GetInsuranceList

func (d *MockSix910Mysql) GetInsuranceList(storeID int64) *[]mdb.Insurance

GetInsuranceList GetInsuranceList

func (*MockSix910Mysql) GetLocalAccount

func (d *MockSix910Mysql) GetLocalAccount(username string, storeID int64) *mdb.LocalAccount

GetLocalAccount GetLocalAccount

func (*MockSix910Mysql) GetLocalAccountList

func (d *MockSix910Mysql) GetLocalAccountList(store int64) *[]mdb.LocalAccount

GetLocalAccountList GetLocalAccountList

func (*MockSix910Mysql) GetLocalDatastore

func (d *MockSix910Mysql) GetLocalDatastore(storeID int64, dataStoreName string) *mdb.LocalDataStore

GetLocalDatastore GetLocalDatastore

func (*MockSix910Mysql) GetLocalStore added in v1.0.6

func (d *MockSix910Mysql) GetLocalStore() *mdb.Store

GetLocalStore GetLocalStore

func (*MockSix910Mysql) GetNew

func (d *MockSix910Mysql) GetNew() sdbi.Six910DB

GetNew GetNew

func (*MockSix910Mysql) GetOrder

func (d *MockSix910Mysql) GetOrder(id int64) *mdb.Order

GetOrder GetOrder

func (*MockSix910Mysql) GetOrderCommentList

func (d *MockSix910Mysql) GetOrderCommentList(orderID int64) *[]mdb.OrderComment

GetOrderCommentList GetOrderCommentList

func (*MockSix910Mysql) GetOrderCountData added in v1.0.33

func (d *MockSix910Mysql) GetOrderCountData(storeID int64) *[]mdb.OrderCountData

GetOrderCountData GetOrderCountData

func (*MockSix910Mysql) GetOrderItem

func (d *MockSix910Mysql) GetOrderItem(id int64) *mdb.OrderItem

GetOrderItem GetOrderItem

func (*MockSix910Mysql) GetOrderItemList

func (d *MockSix910Mysql) GetOrderItemList(orderID int64) *[]mdb.OrderItem

GetOrderItemList GetOrderItemList

func (*MockSix910Mysql) GetOrderList

func (d *MockSix910Mysql) GetOrderList(cid int64, storeID int64) *[]mdb.Order

GetOrderList GetOrderList

func (*MockSix910Mysql) GetOrderSalesData added in v1.0.33

func (d *MockSix910Mysql) GetOrderSalesData(storeID int64) *[]mdb.OrderSalesData

GetOrderSalesData GetOrderSalesData

func (*MockSix910Mysql) GetOrderTransactionList

func (d *MockSix910Mysql) GetOrderTransactionList(orderID int64) *[]mdb.OrderTransaction

GetOrderTransactionList GetOrderTransactionList

func (*MockSix910Mysql) GetPaymentGateway added in v1.0.2

func (d *MockSix910Mysql) GetPaymentGateway(id int64) *mdb.PaymentGateway

GetPaymentGateway GetPaymentGateway

func (*MockSix910Mysql) GetPaymentGatewayByName added in v1.0.35

func (d *MockSix910Mysql) GetPaymentGatewayByName(name string, storeID int64) *mdb.PaymentGateway

GetPaymentGatewayByName GetPaymentGatewayByName

func (*MockSix910Mysql) GetPaymentGateways

func (d *MockSix910Mysql) GetPaymentGateways(storeID int64) *[]mdb.PaymentGateway

GetPaymentGateways GetPaymentGateways

func (*MockSix910Mysql) GetPlugin

func (d *MockSix910Mysql) GetPlugin(id int64) *mdb.Plugins

GetPlugin GetPlugin

func (*MockSix910Mysql) GetPluginList

func (d *MockSix910Mysql) GetPluginList(start int64, end int64) *[]mdb.Plugins

GetPluginList GetPluginList

func (*MockSix910Mysql) GetProductByCatAndManufacturer added in v1.0.28

func (d *MockSix910Mysql) GetProductByCatAndManufacturer(catID int64, manf string, storeID int64,
	start int64, end int64) *[]mdb.Product

GetProductByCatAndManufacturer GetProductByCatAndManufacturer

func (*MockSix910Mysql) GetProductByID

func (d *MockSix910Mysql) GetProductByID(id int64) *mdb.Product

GetProductByID GetProductByID

func (*MockSix910Mysql) GetProductByNameAndManufacturerName added in v1.0.28

func (d *MockSix910Mysql) GetProductByNameAndManufacturerName(manf string, name string, storeID int64,
	start int64, end int64) *[]mdb.Product

GetProductByNameAndManufacturerName GetProductByNameAndManufacturerName

func (*MockSix910Mysql) GetProductBySku added in v1.0.15

func (d *MockSix910Mysql) GetProductBySku(sku string, distributorID int64, storeID int64) *mdb.Product

GetProductBySku GetProductBySku

func (*MockSix910Mysql) GetProductCategoryList added in v1.0.22

func (d *MockSix910Mysql) GetProductCategoryList(productID int64) *[]int64

GetProductCategoryList GetProductCategoryList

func (*MockSix910Mysql) GetProductIDList added in v1.0.33

func (d *MockSix910Mysql) GetProductIDList(storeID int64) *[]int64

GetProductIDList GetProductIDList

func (*MockSix910Mysql) GetProductIDListByCategories added in v1.0.33

func (d *MockSix910Mysql) GetProductIDListByCategories(storeID int64, catList *[]int64) *[]int64

GetProductIDListByCategories GetProductIDListByCategories

func (*MockSix910Mysql) GetProductList

func (d *MockSix910Mysql) GetProductList(storeID int64, start int64, end int64) *[]mdb.Product

GetProductList GetProductList

func (*MockSix910Mysql) GetProductManufacturerListByCatID added in v1.0.28

func (d *MockSix910Mysql) GetProductManufacturerListByCatID(catID int64, storeID int64) *[]string

GetProductManufacturerListByCatID GetProductManufacturerListByCatID

func (*MockSix910Mysql) GetProductManufacturerListByProductName added in v1.0.28

func (d *MockSix910Mysql) GetProductManufacturerListByProductName(name string, storeID int64) *[]string

GetProductManufacturerListByProductName GetProductManufacturerListByProductName

func (*MockSix910Mysql) GetProductManufacturerListByProductSearch added in v1.2.1

func (d *MockSix910Mysql) GetProductManufacturerListByProductSearch(attrs string, storeID int64) *[]string

GetProductManufacturerListByProductSearch GetProductManufacturerListByProductSearch

func (*MockSix910Mysql) GetProductSubSkuList added in v1.1.5

func (d *MockSix910Mysql) GetProductSubSkuList(storeID int64, parentProdID int64) *[]mdb.Product

GetProductSubSkuList GetProductSubSkuList

func (*MockSix910Mysql) GetProductsByCaterory

func (d *MockSix910Mysql) GetProductsByCaterory(catID int64, start int64, end int64) *[]mdb.Product

GetProductsByCaterory GetProductsByCaterory

func (*MockSix910Mysql) GetProductsByName

func (d *MockSix910Mysql) GetProductsByName(name string, storeID int64, start int64, end int64) *[]mdb.Product

GetProductsByName GetProductsByName

func (*MockSix910Mysql) GetProductsByPromoted added in v1.0.19

func (d *MockSix910Mysql) GetProductsByPromoted(storeID int64, start int64, end int64) *[]mdb.Product

GetProductsByPromoted GetProductsByPromoted

func (*MockSix910Mysql) GetRegion

func (d *MockSix910Mysql) GetRegion(id int64) *mdb.Region

GetRegion GetRegion

func (*MockSix910Mysql) GetRegionList

func (d *MockSix910Mysql) GetRegionList(storeID int64) *[]mdb.Region

GetRegionList GetRegionList

func (*MockSix910Mysql) GetSecurity

func (d *MockSix910Mysql) GetSecurity() *mdb.Security

GetSecurity GetSecurity

func (*MockSix910Mysql) GetShipment

func (d *MockSix910Mysql) GetShipment(id int64) *mdb.Shipment

GetShipment GetShipment

func (*MockSix910Mysql) GetShipmentBox

func (d *MockSix910Mysql) GetShipmentBox(id int64) *mdb.ShipmentBox

GetShipmentBox GetShipmentBox

func (*MockSix910Mysql) GetShipmentBoxList

func (d *MockSix910Mysql) GetShipmentBoxList(shipmentID int64) *[]mdb.ShipmentBox

GetShipmentBoxList GetShipmentBoxList

func (*MockSix910Mysql) GetShipmentItem

func (d *MockSix910Mysql) GetShipmentItem(id int64) *mdb.ShipmentItem

GetShipmentItem GetShipmentItem

func (*MockSix910Mysql) GetShipmentItemList

func (d *MockSix910Mysql) GetShipmentItemList(shipmentID int64) *[]mdb.ShipmentItem

GetShipmentItemList GetShipmentItemList

func (*MockSix910Mysql) GetShipmentItemListByBox

func (d *MockSix910Mysql) GetShipmentItemListByBox(boxNumber int64, shipmentID int64) *[]mdb.ShipmentItem

GetShipmentItemListByBox GetShipmentItemListByBox

func (*MockSix910Mysql) GetShipmentList

func (d *MockSix910Mysql) GetShipmentList(orderID int64) *[]mdb.Shipment

GetShipmentList GetShipmentList

func (*MockSix910Mysql) GetShippingCarrier added in v1.0.2

func (d *MockSix910Mysql) GetShippingCarrier(id int64) *mdb.ShippingCarrier

GetShippingCarrier GetShippingCarrier

func (*MockSix910Mysql) GetShippingCarrierList

func (d *MockSix910Mysql) GetShippingCarrierList(storeID int64) *[]mdb.ShippingCarrier

GetShippingCarrierList GetShippingCarrierList

func (*MockSix910Mysql) GetShippingMethod

func (d *MockSix910Mysql) GetShippingMethod(id int64) *mdb.ShippingMethod

GetShippingMethod GetShippingMethod

func (*MockSix910Mysql) GetShippingMethodList

func (d *MockSix910Mysql) GetShippingMethodList(storeID int64) *[]mdb.ShippingMethod

GetShippingMethodList GetShippingMethodList

func (*MockSix910Mysql) GetStore

func (d *MockSix910Mysql) GetStore(sname string) *mdb.Store

GetStore GetStore

func (*MockSix910Mysql) GetStoreByLocal

func (d *MockSix910Mysql) GetStoreByLocal(localDomain string) *mdb.Store

GetStoreByLocal GetStoreByLocal

func (*MockSix910Mysql) GetStoreCount added in v1.0.1

func (d *MockSix910Mysql) GetStoreCount() int64

GetStoreCount GetStoreCount

func (*MockSix910Mysql) GetStoreID

func (d *MockSix910Mysql) GetStoreID(id int64) *mdb.Store

GetStoreID GetStoreID

func (*MockSix910Mysql) GetStoreOrderList added in v1.0.17

func (d *MockSix910Mysql) GetStoreOrderList(storeID int64) *[]mdb.Order

GetStoreOrderList GetStoreOrderList

func (*MockSix910Mysql) GetStoreOrderListByStatus added in v1.0.17

func (d *MockSix910Mysql) GetStoreOrderListByStatus(status string, storeID int64) *[]mdb.Order

GetStoreOrderListByStatus GetStoreOrderListByStatus

func (*MockSix910Mysql) GetStorePlugin

func (d *MockSix910Mysql) GetStorePlugin(id int64) *mdb.StorePlugins

GetStorePlugin GetStorePlugin

func (*MockSix910Mysql) GetStorePluginList

func (d *MockSix910Mysql) GetStorePluginList(storeID int64) *[]mdb.StorePlugins

GetStorePluginList GetStorePluginList

func (*MockSix910Mysql) GetSubCategoryList

func (d *MockSix910Mysql) GetSubCategoryList(catID int64) *[]mdb.Category

GetSubCategoryList GetSubCategoryList

func (*MockSix910Mysql) GetSubRegion

func (d *MockSix910Mysql) GetSubRegion(id int64) *mdb.SubRegion

GetSubRegion GetSubRegion

func (*MockSix910Mysql) GetSubRegionList

func (d *MockSix910Mysql) GetSubRegionList(regionID int64) *[]mdb.SubRegion

GetSubRegionList GetSubRegionList

func (*MockSix910Mysql) GetTaxRate added in v1.0.20

func (d *MockSix910Mysql) GetTaxRate(country string, state string, storeID int64) *[]mdb.TaxRate

GetTaxRate GetTaxRate

func (*MockSix910Mysql) GetTaxRateList added in v1.0.20

func (d *MockSix910Mysql) GetTaxRateList(storeID int64) *[]mdb.TaxRate

GetTaxRateList GetTaxRateList

func (*MockSix910Mysql) GetVisitorData added in v1.0.33

func (d *MockSix910Mysql) GetVisitorData(storeID int64) *[]mdb.VisitorData

GetVisitorData GetVisitorData

func (*MockSix910Mysql) GetZoneZipListByExclusion

func (d *MockSix910Mysql) GetZoneZipListByExclusion(exID int64) *[]mdb.ZoneZip

GetZoneZipListByExclusion GetZoneZipListByExclusion

func (*MockSix910Mysql) GetZoneZipListByInclusion

func (d *MockSix910Mysql) GetZoneZipListByInclusion(incID int64) *[]mdb.ZoneZip

GetZoneZipListByInclusion GetZoneZipListByInclusion

func (*MockSix910Mysql) ProductSearch added in v1.2.0

func (d *MockSix910Mysql) ProductSearch(p *mdb.ProductSearch) *[]mdb.Product

ProductSearch ProductSearch

func (*MockSix910Mysql) UpdateAddress

func (d *MockSix910Mysql) UpdateAddress(a *mdb.Address) bool

UpdateAddress UpdateAddress

func (*MockSix910Mysql) UpdateCart

func (d *MockSix910Mysql) UpdateCart(c *mdb.Cart) bool

UpdateCart UpdateCart

func (*MockSix910Mysql) UpdateCartItem

func (d *MockSix910Mysql) UpdateCartItem(ci *mdb.CartItem) bool

UpdateCartItem UpdateCartItem

func (*MockSix910Mysql) UpdateCategory

func (d *MockSix910Mysql) UpdateCategory(c *mdb.Category) bool

UpdateCategory UpdateCategory

func (*MockSix910Mysql) UpdateCustomer

func (d *MockSix910Mysql) UpdateCustomer(c *mdb.Customer) bool

UpdateCustomer UpdateCustomer

func (*MockSix910Mysql) UpdateDataStoreWriteLock

func (d *MockSix910Mysql) UpdateDataStoreWriteLock(w *mdb.DataStoreWriteLock) bool

UpdateDataStoreWriteLock UpdateDataStoreWriteLock

func (*MockSix910Mysql) UpdateDistributor

func (d *MockSix910Mysql) UpdateDistributor(ds *mdb.Distributor) bool

UpdateDistributor UpdateDistributor

func (*MockSix910Mysql) UpdateExcludedSubRegion

func (d *MockSix910Mysql) UpdateExcludedSubRegion(e *mdb.ExcludedSubRegion) bool

UpdateExcludedSubRegion UpdateExcludedSubRegion

func (*MockSix910Mysql) UpdateIncludedSubRegion

func (d *MockSix910Mysql) UpdateIncludedSubRegion(e *mdb.IncludedSubRegion) bool

UpdateIncludedSubRegion UpdateIncludedSubRegion

func (*MockSix910Mysql) UpdateInstance

func (d *MockSix910Mysql) UpdateInstance(i *mdb.Instances) bool

UpdateInstance UpdateInstance

func (*MockSix910Mysql) UpdateInsurance

func (d *MockSix910Mysql) UpdateInsurance(i *mdb.Insurance) bool

UpdateInsurance UpdateInsurance

func (*MockSix910Mysql) UpdateLocalAccount

func (d *MockSix910Mysql) UpdateLocalAccount(a *mdb.LocalAccount) bool

UpdateLocalAccount UpdateLocalAccount

func (*MockSix910Mysql) UpdateLocalDatastore

func (d *MockSix910Mysql) UpdateLocalDatastore(ds *mdb.LocalDataStore) bool

UpdateLocalDatastore UpdateLocalDatastore

func (*MockSix910Mysql) UpdateOrder

func (d *MockSix910Mysql) UpdateOrder(o *mdb.Order) bool

UpdateOrder UpdateOrder

func (*MockSix910Mysql) UpdateOrderItem

func (d *MockSix910Mysql) UpdateOrderItem(i *mdb.OrderItem) bool

UpdateOrderItem UpdateOrderItem

func (*MockSix910Mysql) UpdatePaymentGateway

func (d *MockSix910Mysql) UpdatePaymentGateway(pgw *mdb.PaymentGateway) bool

UpdatePaymentGateway UpdatePaymentGateway

func (*MockSix910Mysql) UpdatePlugin

func (d *MockSix910Mysql) UpdatePlugin(p *mdb.Plugins) bool

UpdatePlugin UpdatePlugin

func (*MockSix910Mysql) UpdateProduct

func (d *MockSix910Mysql) UpdateProduct(p *mdb.Product) bool

UpdateProduct UpdateProduct

func (*MockSix910Mysql) UpdateProductQuantity added in v1.0.32

func (d *MockSix910Mysql) UpdateProductQuantity(p *mdb.Product) bool

UpdateProductQuantity UpdateProductQuantity

func (*MockSix910Mysql) UpdateRegion

func (d *MockSix910Mysql) UpdateRegion(r *mdb.Region) bool

UpdateRegion UpdateRegion

func (*MockSix910Mysql) UpdateSecurity

func (d *MockSix910Mysql) UpdateSecurity(s *mdb.Security) bool

UpdateSecurity UpdateSecurity

func (*MockSix910Mysql) UpdateShipment

func (d *MockSix910Mysql) UpdateShipment(s *mdb.Shipment) bool

UpdateShipment UpdateShipment

func (*MockSix910Mysql) UpdateShipmentBox

func (d *MockSix910Mysql) UpdateShipmentBox(sb *mdb.ShipmentBox) bool

UpdateShipmentBox UpdateShipmentBox

func (*MockSix910Mysql) UpdateShipmentItem

func (d *MockSix910Mysql) UpdateShipmentItem(si *mdb.ShipmentItem) bool

UpdateShipmentItem UpdateShipmentItem

func (*MockSix910Mysql) UpdateShippingCarrier

func (d *MockSix910Mysql) UpdateShippingCarrier(c *mdb.ShippingCarrier) bool

UpdateShippingCarrier UpdateShippingCarrier

func (*MockSix910Mysql) UpdateShippingMethod

func (d *MockSix910Mysql) UpdateShippingMethod(s *mdb.ShippingMethod) bool

UpdateShippingMethod UpdateShippingMethod

func (*MockSix910Mysql) UpdateStore

func (d *MockSix910Mysql) UpdateStore(s *mdb.Store) bool

UpdateStore UpdateStore

func (*MockSix910Mysql) UpdateStorePlugin

func (d *MockSix910Mysql) UpdateStorePlugin(sp *mdb.StorePlugins) bool

UpdateStorePlugin UpdateStorePlugin

func (*MockSix910Mysql) UpdateSubRegion

func (d *MockSix910Mysql) UpdateSubRegion(s *mdb.SubRegion) bool

UpdateSubRegion UpdateSubRegion

func (*MockSix910Mysql) UpdateTaxRate added in v1.0.20

func (d *MockSix910Mysql) UpdateTaxRate(t *mdb.TaxRate) bool

UpdateTaxRate UpdateTaxRate

type Six910Mysql

type Six910Mysql struct {
	DB  dbi.Database
	Log *lg.Logger
}

Six910Mysql Six910Mysql

func (*Six910Mysql) AddAddress

func (d *Six910Mysql) AddAddress(ad *mdb.Address) (bool, int64)

AddAddress AddAddress

func (*Six910Mysql) AddCart

func (d *Six910Mysql) AddCart(c *mdb.Cart) (bool, int64)

AddCart AddCart

func (*Six910Mysql) AddCartItem

func (d *Six910Mysql) AddCartItem(ci *mdb.CartItem) (bool, int64)

AddCartItem AddCartItem

func (*Six910Mysql) AddCategory

func (d *Six910Mysql) AddCategory(c *mdb.Category) (bool, int64)

AddCategory AddCategory

func (*Six910Mysql) AddCustomer

func (d *Six910Mysql) AddCustomer(c *mdb.Customer) (bool, int64)

AddCustomer AddCustomer

func (*Six910Mysql) AddDataStoreWriteLock

func (d *Six910Mysql) AddDataStoreWriteLock(w *mdb.DataStoreWriteLock) bool

AddDataStoreWriteLock AddDataStoreWriteLock

func (*Six910Mysql) AddDistributor

func (d *Six910Mysql) AddDistributor(ds *mdb.Distributor) (bool, int64)

AddDistributor AddDistributor

func (*Six910Mysql) AddExcludedSubRegion

func (d *Six910Mysql) AddExcludedSubRegion(e *mdb.ExcludedSubRegion) (bool, int64)

AddExcludedSubRegion AddExcludedSubRegion

func (*Six910Mysql) AddIncludedSubRegion

func (d *Six910Mysql) AddIncludedSubRegion(e *mdb.IncludedSubRegion) (bool, int64)

AddIncludedSubRegion AddIncludedSubRegion

func (*Six910Mysql) AddInstance

func (d *Six910Mysql) AddInstance(i *mdb.Instances) bool

AddInstance AddInstance

func (*Six910Mysql) AddInsurance

func (d *Six910Mysql) AddInsurance(i *mdb.Insurance) (bool, int64)

AddInsurance AddInsurance

func (*Six910Mysql) AddLocalAccount

func (d *Six910Mysql) AddLocalAccount(c *mdb.LocalAccount) bool

AddLocalAccount AddLocalAccount

func (*Six910Mysql) AddLocalDatastore

func (d *Six910Mysql) AddLocalDatastore(ds *mdb.LocalDataStore) bool

AddLocalDatastore AddLocalDatastore

func (*Six910Mysql) AddOrder

func (d *Six910Mysql) AddOrder(o *mdb.Order) (bool, int64)

AddOrder AddOrder

func (*Six910Mysql) AddOrderComments

func (d *Six910Mysql) AddOrderComments(c *mdb.OrderComment) (bool, int64)

AddOrderComments AddOrderComments

func (*Six910Mysql) AddOrderItem

func (d *Six910Mysql) AddOrderItem(i *mdb.OrderItem) (bool, int64)

AddOrderItem AddOrderItem

func (*Six910Mysql) AddOrderTransaction

func (d *Six910Mysql) AddOrderTransaction(t *mdb.OrderTransaction) (bool, int64)

AddOrderTransaction AddOrderTransaction

func (*Six910Mysql) AddPaymentGateway

func (d *Six910Mysql) AddPaymentGateway(pgw *mdb.PaymentGateway) (bool, int64)

AddPaymentGateway AddPaymentGateway

func (*Six910Mysql) AddPlugin

func (d *Six910Mysql) AddPlugin(p *mdb.Plugins) (bool, int64)

AddPlugin AddPlugin

func (*Six910Mysql) AddProduct

func (d *Six910Mysql) AddProduct(p *mdb.Product) (bool, int64)

AddProduct AddProduct

func (*Six910Mysql) AddProductCategory

func (d *Six910Mysql) AddProductCategory(pc *mdb.ProductCategory) bool

AddProductCategory AddProductCategory

func (*Six910Mysql) AddRegion

func (d *Six910Mysql) AddRegion(r *mdb.Region) (bool, int64)

AddRegion AddRegion

func (*Six910Mysql) AddSecurity

func (d *Six910Mysql) AddSecurity(s *mdb.Security) (bool, int64)

AddSecurity AddSecurity

func (*Six910Mysql) AddShipment

func (d *Six910Mysql) AddShipment(s *mdb.Shipment) (bool, int64)

AddShipment AddShipment

func (*Six910Mysql) AddShipmentBox

func (d *Six910Mysql) AddShipmentBox(sb *mdb.ShipmentBox) (bool, int64)

AddShipmentBox AddShipmentBox

func (*Six910Mysql) AddShipmentItem

func (d *Six910Mysql) AddShipmentItem(si *mdb.ShipmentItem) (bool, int64)

AddShipmentItem AddShipmentItem

func (*Six910Mysql) AddShippingCarrier

func (d *Six910Mysql) AddShippingCarrier(c *mdb.ShippingCarrier) (bool, int64)

AddShippingCarrier AddShippingCarrier

func (*Six910Mysql) AddShippingMethod

func (d *Six910Mysql) AddShippingMethod(s *mdb.ShippingMethod) (bool, int64)

AddShippingMethod AddShippingMethod

func (*Six910Mysql) AddStore

func (d *Six910Mysql) AddStore(s *mdb.Store) (bool, int64)

AddStore AddStore

func (*Six910Mysql) AddStorePlugin

func (d *Six910Mysql) AddStorePlugin(sp *mdb.StorePlugins) (bool, int64)

AddStorePlugin AddStorePlugin

func (*Six910Mysql) AddSubRegion

func (d *Six910Mysql) AddSubRegion(s *mdb.SubRegion) (bool, int64)

AddSubRegion AddSubRegion

func (*Six910Mysql) AddTaxRate added in v1.0.20

func (d *Six910Mysql) AddTaxRate(t *mdb.TaxRate) (bool, int64)

AddTaxRate AddTaxRate

func (*Six910Mysql) AddVisit added in v1.0.33

func (d *Six910Mysql) AddVisit(v *mdb.Visitor) bool

AddVisit AddVisit

func (*Six910Mysql) AddZoneZip

func (d *Six910Mysql) AddZoneZip(z *mdb.ZoneZip) (bool, int64)

AddZoneZip AddZoneZip

func (*Six910Mysql) DeleteAddress

func (d *Six910Mysql) DeleteAddress(id int64) bool

DeleteAddress DeleteAddress

func (*Six910Mysql) DeleteCart

func (d *Six910Mysql) DeleteCart(id int64) bool

DeleteCart DeleteCart

func (*Six910Mysql) DeleteCartItem

func (d *Six910Mysql) DeleteCartItem(id int64) bool

DeleteCartItem DeleteCartItem

func (*Six910Mysql) DeleteCategory

func (d *Six910Mysql) DeleteCategory(id int64) bool

DeleteCategory DeleteCategory

func (*Six910Mysql) DeleteCustomer

func (d *Six910Mysql) DeleteCustomer(id int64) bool

DeleteCustomer DeleteCustomer

func (*Six910Mysql) DeleteDistributor

func (d *Six910Mysql) DeleteDistributor(id int64) bool

DeleteDistributor DeleteDistributor

func (*Six910Mysql) DeleteExcludedSubRegion

func (d *Six910Mysql) DeleteExcludedSubRegion(id int64) bool

DeleteExcludedSubRegion DeleteExcludedSubRegion

func (*Six910Mysql) DeleteIncludedSubRegion

func (d *Six910Mysql) DeleteIncludedSubRegion(id int64) bool

DeleteIncludedSubRegion DeleteIncludedSubRegion

func (*Six910Mysql) DeleteInsurance

func (d *Six910Mysql) DeleteInsurance(id int64) bool

DeleteInsurance DeleteInsurance

func (*Six910Mysql) DeleteLocalAccount

func (d *Six910Mysql) DeleteLocalAccount(username string, storeID int64) bool

DeleteLocalAccount DeleteLocalAccount

func (*Six910Mysql) DeleteOrder

func (d *Six910Mysql) DeleteOrder(id int64) bool

DeleteOrder DeleteOrder

func (*Six910Mysql) DeleteOrderItem

func (d *Six910Mysql) DeleteOrderItem(id int64) bool

DeleteOrderItem DeleteOrderItem

func (*Six910Mysql) DeletePaymentGateway

func (d *Six910Mysql) DeletePaymentGateway(id int64) bool

DeletePaymentGateway DeletePaymentGateway

func (*Six910Mysql) DeletePlugin

func (d *Six910Mysql) DeletePlugin(id int64) bool

DeletePlugin DeletePlugin

func (*Six910Mysql) DeleteProduct

func (d *Six910Mysql) DeleteProduct(id int64) bool

DeleteProduct DeleteProduct

func (*Six910Mysql) DeleteProductCategory

func (d *Six910Mysql) DeleteProductCategory(pc *mdb.ProductCategory) bool

DeleteProductCategory DeleteProductCategory

func (*Six910Mysql) DeleteRegion

func (d *Six910Mysql) DeleteRegion(id int64) bool

DeleteRegion DeleteRegion

func (*Six910Mysql) DeleteSecurity

func (d *Six910Mysql) DeleteSecurity() bool

DeleteSecurity DeleteSecurity

func (*Six910Mysql) DeleteShipment

func (d *Six910Mysql) DeleteShipment(id int64) bool

DeleteShipment DeleteShipment

func (*Six910Mysql) DeleteShipmentBox

func (d *Six910Mysql) DeleteShipmentBox(id int64) bool

DeleteShipmentBox DeleteShipmentBox

func (*Six910Mysql) DeleteShipmentItem

func (d *Six910Mysql) DeleteShipmentItem(id int64) bool

DeleteShipmentItem DeleteShipmentItem

func (*Six910Mysql) DeleteShippingCarrier

func (d *Six910Mysql) DeleteShippingCarrier(id int64) bool

DeleteShippingCarrier DeleteShippingCarrier

func (*Six910Mysql) DeleteShippingMethod

func (d *Six910Mysql) DeleteShippingMethod(id int64) bool

DeleteShippingMethod DeleteShippingMethod

func (*Six910Mysql) DeleteStore

func (d *Six910Mysql) DeleteStore(id int64) bool

DeleteStore DeleteStore

func (*Six910Mysql) DeleteStorePlugin

func (d *Six910Mysql) DeleteStorePlugin(id int64) bool

DeleteStorePlugin DeleteStorePlugin

func (*Six910Mysql) DeleteSubProduct added in v1.1.8

func (d *Six910Mysql) DeleteSubProduct(parentProdID int64) bool

DeleteSubProduct DeleteSubProduct

func (*Six910Mysql) DeleteSubRegion

func (d *Six910Mysql) DeleteSubRegion(id int64) bool

DeleteSubRegion DeleteSubRegion

func (*Six910Mysql) DeleteTaxRate added in v1.0.20

func (d *Six910Mysql) DeleteTaxRate(id int64) bool

DeleteTaxRate DeleteTaxRate

func (*Six910Mysql) DeleteZoneZip

func (d *Six910Mysql) DeleteZoneZip(id int64) bool

DeleteZoneZip DeleteZoneZip

func (*Six910Mysql) GetAddress

func (d *Six910Mysql) GetAddress(id int64) *mdb.Address

GetAddress GetAddress

func (*Six910Mysql) GetAddressList

func (d *Six910Mysql) GetAddressList(cid int64) *[]mdb.Address

GetAddressList GetAddressList

func (*Six910Mysql) GetCarItem

func (d *Six910Mysql) GetCarItem(cartID int64, prodID int64) *mdb.CartItem

GetCarItem GetCarItem

func (*Six910Mysql) GetCart

func (d *Six910Mysql) GetCart(cid int64) *mdb.Cart

GetCart GetCart

func (*Six910Mysql) GetCartItemList

func (d *Six910Mysql) GetCartItemList(cartID int64) *[]mdb.CartItem

GetCartItemList GetCartItemList

func (*Six910Mysql) GetCategory

func (d *Six910Mysql) GetCategory(id int64) *mdb.Category

GetCategory GetCategory

func (*Six910Mysql) GetCategoryList

func (d *Six910Mysql) GetCategoryList(storeID int64) *[]mdb.Category

GetCategoryList GetCategoryList

func (*Six910Mysql) GetCustomer

func (d *Six910Mysql) GetCustomer(email string, storeID int64) *mdb.Customer

GetCustomer GetCustomer

func (*Six910Mysql) GetCustomerID

func (d *Six910Mysql) GetCustomerID(id int64) *mdb.Customer

GetCustomerID GetCustomerID

func (*Six910Mysql) GetCustomerList

func (d *Six910Mysql) GetCustomerList(storeID int64, start int64, end int64) *[]mdb.Customer

GetCustomerList GetCustomerList

func (*Six910Mysql) GetCustomerUsers added in v1.0.34

func (d *Six910Mysql) GetCustomerUsers(cid int64, storeID int64) *[]mdb.LocalAccount

GetCustomerUsers GetCustomerUsers

func (*Six910Mysql) GetDataStoreWriteLock

func (d *Six910Mysql) GetDataStoreWriteLock(dataStore string, storeID int64) *mdb.DataStoreWriteLock

GetDataStoreWriteLock GetDataStoreWriteLock

func (*Six910Mysql) GetDistributor

func (d *Six910Mysql) GetDistributor(id int64) *mdb.Distributor

GetDistributor GetDistributor

func (*Six910Mysql) GetDistributorList

func (d *Six910Mysql) GetDistributorList(store int64) *[]mdb.Distributor

GetDistributorList GetDistributorList

func (*Six910Mysql) GetExcludedSubRegion

func (d *Six910Mysql) GetExcludedSubRegion(id int64) *mdb.ExcludedSubRegion

GetExcludedSubRegion GetExcludedSubRegion

func (*Six910Mysql) GetExcludedSubRegionList

func (d *Six910Mysql) GetExcludedSubRegionList(regionID int64) *[]mdb.ExcludedSubRegion

GetExcludedSubRegionList GetExcludedSubRegionList

func (*Six910Mysql) GetHierarchicalCategoryList added in v1.0.21

func (d *Six910Mysql) GetHierarchicalCategoryList(storeID int64) *[]mdb.Category

GetHierarchicalCategoryList GetHierarchicalCategoryList

func (*Six910Mysql) GetIncludedSubRegion

func (d *Six910Mysql) GetIncludedSubRegion(id int64) *mdb.IncludedSubRegion

GetIncludedSubRegion GetIncludedSubRegion

func (*Six910Mysql) GetIncludedSubRegionList

func (d *Six910Mysql) GetIncludedSubRegionList(regionID int64) *[]mdb.IncludedSubRegion

GetIncludedSubRegionList GetIncludedSubRegionList

func (*Six910Mysql) GetInstance

func (d *Six910Mysql) GetInstance(name string, dataStoreName string, storeID int64) *mdb.Instances

GetInstance GetInstance

func (*Six910Mysql) GetInstanceList added in v1.0.11

func (d *Six910Mysql) GetInstanceList(dataStoreName string, storeID int64) *[]mdb.Instances

GetInstanceList GetInstanceList

func (*Six910Mysql) GetInsurance

func (d *Six910Mysql) GetInsurance(id int64) *mdb.Insurance

GetInsurance GetInsurance

func (*Six910Mysql) GetInsuranceList

func (d *Six910Mysql) GetInsuranceList(storeID int64) *[]mdb.Insurance

GetInsuranceList GetInsuranceList

func (*Six910Mysql) GetLocalAccount

func (d *Six910Mysql) GetLocalAccount(username string, storeID int64) *mdb.LocalAccount

GetLocalAccount GetLocalAccount

func (*Six910Mysql) GetLocalAccountList

func (d *Six910Mysql) GetLocalAccountList(store int64) *[]mdb.LocalAccount

GetLocalAccountList GetLocalAccountList

func (*Six910Mysql) GetLocalDatastore

func (d *Six910Mysql) GetLocalDatastore(storeID int64, dataStoreName string) *mdb.LocalDataStore

GetLocalDatastore GetLocalDatastore

func (*Six910Mysql) GetLocalStore added in v1.0.6

func (d *Six910Mysql) GetLocalStore() *mdb.Store

GetLocalStore GetLocalStore

func (*Six910Mysql) GetNew

func (d *Six910Mysql) GetNew() sdbi.Six910DB

GetNew GetNew

func (*Six910Mysql) GetOrder

func (d *Six910Mysql) GetOrder(id int64) *mdb.Order

GetOrder GetOrder

func (*Six910Mysql) GetOrderCommentList

func (d *Six910Mysql) GetOrderCommentList(orderID int64) *[]mdb.OrderComment

GetOrderCommentList GetOrderCommentList

func (*Six910Mysql) GetOrderCountData added in v1.0.33

func (d *Six910Mysql) GetOrderCountData(storeID int64) *[]mdb.OrderCountData

GetOrderCountData GetOrderCountData

func (*Six910Mysql) GetOrderItem

func (d *Six910Mysql) GetOrderItem(id int64) *mdb.OrderItem

GetOrderItem GetOrderItem

func (*Six910Mysql) GetOrderItemList

func (d *Six910Mysql) GetOrderItemList(orderID int64) *[]mdb.OrderItem

GetOrderItemList GetOrderItemList

func (*Six910Mysql) GetOrderList

func (d *Six910Mysql) GetOrderList(cid int64, storeID int64) *[]mdb.Order

GetOrderList GetOrderList

func (*Six910Mysql) GetOrderSalesData added in v1.0.33

func (d *Six910Mysql) GetOrderSalesData(storeID int64) *[]mdb.OrderSalesData

GetOrderSalesData GetOrderSalesData

func (*Six910Mysql) GetOrderTransactionList

func (d *Six910Mysql) GetOrderTransactionList(orderID int64) *[]mdb.OrderTransaction

GetOrderTransactionList GetOrderTransactionList

func (*Six910Mysql) GetPaymentGateway added in v1.0.2

func (d *Six910Mysql) GetPaymentGateway(id int64) *mdb.PaymentGateway

GetPaymentGateway GetPaymentGateway

func (*Six910Mysql) GetPaymentGatewayByName added in v1.0.35

func (d *Six910Mysql) GetPaymentGatewayByName(name string, storeID int64) *mdb.PaymentGateway

GetPaymentGatewayByName GetPaymentGatewayByName

func (*Six910Mysql) GetPaymentGateways

func (d *Six910Mysql) GetPaymentGateways(storeID int64) *[]mdb.PaymentGateway

GetPaymentGateways GetPaymentGateways

func (*Six910Mysql) GetPlugin

func (d *Six910Mysql) GetPlugin(id int64) *mdb.Plugins

GetPlugin GetPlugin

func (*Six910Mysql) GetPluginList

func (d *Six910Mysql) GetPluginList(start int64, end int64) *[]mdb.Plugins

GetPluginList GetPluginList

func (*Six910Mysql) GetProductByCatAndManufacturer added in v1.0.28

func (d *Six910Mysql) GetProductByCatAndManufacturer(catID int64, manf string, storeID int64,
	start int64, end int64) *[]mdb.Product

GetProductByCatAndManufacturer GetProductByCatAndManufacturer

func (*Six910Mysql) GetProductByID

func (d *Six910Mysql) GetProductByID(id int64) *mdb.Product

GetProductByID GetProductByID

func (*Six910Mysql) GetProductByNameAndManufacturerName added in v1.0.28

func (d *Six910Mysql) GetProductByNameAndManufacturerName(manf string, name string, storeID int64,
	start int64, end int64) *[]mdb.Product

GetProductByNameAndManufacturerName GetProductByNameAndManufacturerName

func (*Six910Mysql) GetProductBySku added in v1.0.15

func (d *Six910Mysql) GetProductBySku(sku string, distributorID int64, storeID int64) *mdb.Product

GetProductBySku GetProductBySku

func (*Six910Mysql) GetProductCategoryList added in v1.0.22

func (d *Six910Mysql) GetProductCategoryList(productID int64) *[]int64

GetProductCategoryList GetProductCategoryList

func (*Six910Mysql) GetProductIDList added in v1.0.33

func (d *Six910Mysql) GetProductIDList(storeID int64) *[]int64

GetProductIDList GetProductIDList

func (*Six910Mysql) GetProductIDListByCategories added in v1.0.33

func (d *Six910Mysql) GetProductIDListByCategories(storeID int64, catList *[]int64) *[]int64

GetProductIDListByCategories GetProductIDListByCategories

func (*Six910Mysql) GetProductList

func (d *Six910Mysql) GetProductList(storeID int64, start int64, end int64) *[]mdb.Product

GetProductList GetProductList

func (*Six910Mysql) GetProductManufacturerListByCatID added in v1.0.28

func (d *Six910Mysql) GetProductManufacturerListByCatID(catID int64, storeID int64) *[]string

GetProductManufacturerListByCatID GetProductManufacturerListByCatID

func (*Six910Mysql) GetProductManufacturerListByProductName added in v1.0.28

func (d *Six910Mysql) GetProductManufacturerListByProductName(name string, storeID int64) *[]string

GetProductManufacturerListByProductName GetProductManufacturerListByProductName

func (*Six910Mysql) GetProductManufacturerListByProductSearch added in v1.2.1

func (d *Six910Mysql) GetProductManufacturerListByProductSearch(attrs string, storeID int64) *[]string

GetProductManufacturerListByProductSearch GetProductManufacturerListByProductSearch

func (*Six910Mysql) GetProductSubSkuList added in v1.1.5

func (d *Six910Mysql) GetProductSubSkuList(storeID int64, parentProdID int64) *[]mdb.Product

GetProductSubSkuList GetProductSubSkuList

func (*Six910Mysql) GetProductsByCaterory

func (d *Six910Mysql) GetProductsByCaterory(catID int64, start int64, end int64) *[]mdb.Product

GetProductsByCaterory GetProductsByCaterory

func (*Six910Mysql) GetProductsByName

func (d *Six910Mysql) GetProductsByName(name string, storeID int64, start int64, end int64) *[]mdb.Product

GetProductsByName GetProductsByName

func (*Six910Mysql) GetProductsByPromoted added in v1.0.19

func (d *Six910Mysql) GetProductsByPromoted(storeID int64, start int64, end int64) *[]mdb.Product

GetProductsByPromoted GetProductsByPromoted

func (*Six910Mysql) GetRegion

func (d *Six910Mysql) GetRegion(id int64) *mdb.Region

GetRegion GetRegion

func (*Six910Mysql) GetRegionList

func (d *Six910Mysql) GetRegionList(storeID int64) *[]mdb.Region

GetRegionList GetRegionList

func (*Six910Mysql) GetSecurity

func (d *Six910Mysql) GetSecurity() *mdb.Security

GetSecurity GetSecurity

func (*Six910Mysql) GetShipment

func (d *Six910Mysql) GetShipment(id int64) *mdb.Shipment

GetShipment GetShipment

func (*Six910Mysql) GetShipmentBox

func (d *Six910Mysql) GetShipmentBox(id int64) *mdb.ShipmentBox

GetShipmentBox GetShipmentBox

func (*Six910Mysql) GetShipmentBoxList

func (d *Six910Mysql) GetShipmentBoxList(shipmentID int64) *[]mdb.ShipmentBox

GetShipmentBoxList GetShipmentBoxList

func (*Six910Mysql) GetShipmentItem

func (d *Six910Mysql) GetShipmentItem(id int64) *mdb.ShipmentItem

GetShipmentItem GetShipmentItem

func (*Six910Mysql) GetShipmentItemList

func (d *Six910Mysql) GetShipmentItemList(shipmentID int64) *[]mdb.ShipmentItem

GetShipmentItemList GetShipmentItemList

func (*Six910Mysql) GetShipmentItemListByBox

func (d *Six910Mysql) GetShipmentItemListByBox(boxNumber int64, shipmentID int64) *[]mdb.ShipmentItem

GetShipmentItemListByBox GetShipmentItemListByBox

func (*Six910Mysql) GetShipmentList

func (d *Six910Mysql) GetShipmentList(orderID int64) *[]mdb.Shipment

GetShipmentList GetShipmentList

func (*Six910Mysql) GetShippingCarrier added in v1.0.2

func (d *Six910Mysql) GetShippingCarrier(id int64) *mdb.ShippingCarrier

GetShippingCarrier GetShippingCarrier

func (*Six910Mysql) GetShippingCarrierList

func (d *Six910Mysql) GetShippingCarrierList(storeID int64) *[]mdb.ShippingCarrier

GetShippingCarrierList GetShippingCarrierList

func (*Six910Mysql) GetShippingMethod

func (d *Six910Mysql) GetShippingMethod(id int64) *mdb.ShippingMethod

GetShippingMethod GetShippingMethod

func (*Six910Mysql) GetShippingMethodList

func (d *Six910Mysql) GetShippingMethodList(storeID int64) *[]mdb.ShippingMethod

GetShippingMethodList GetShippingMethodList

func (*Six910Mysql) GetStore

func (d *Six910Mysql) GetStore(sname string) *mdb.Store

GetStore GetStore

func (*Six910Mysql) GetStoreByLocal

func (d *Six910Mysql) GetStoreByLocal(localDomain string) *mdb.Store

GetStoreByLocal GetStoreByLocal

func (*Six910Mysql) GetStoreCount added in v1.0.1

func (d *Six910Mysql) GetStoreCount() int64

GetStoreCount GetStoreCount

func (*Six910Mysql) GetStoreID

func (d *Six910Mysql) GetStoreID(id int64) *mdb.Store

GetStoreID GetStoreID

func (*Six910Mysql) GetStoreOrderList added in v1.0.17

func (d *Six910Mysql) GetStoreOrderList(storeID int64) *[]mdb.Order

GetStoreOrderList GetStoreOrderList

func (*Six910Mysql) GetStoreOrderListByStatus added in v1.0.17

func (d *Six910Mysql) GetStoreOrderListByStatus(status string, storeID int64) *[]mdb.Order

GetStoreOrderListByStatus GetStoreOrderListByStatus

func (*Six910Mysql) GetStorePlugin

func (d *Six910Mysql) GetStorePlugin(id int64) *mdb.StorePlugins

GetStorePlugin GetStorePlugin

func (*Six910Mysql) GetStorePluginList

func (d *Six910Mysql) GetStorePluginList(storeID int64) *[]mdb.StorePlugins

GetStorePluginList GetStorePluginList

func (*Six910Mysql) GetSubCategoryList

func (d *Six910Mysql) GetSubCategoryList(catID int64) *[]mdb.Category

GetSubCategoryList GetSubCategoryList

func (*Six910Mysql) GetSubRegion

func (d *Six910Mysql) GetSubRegion(id int64) *mdb.SubRegion

GetSubRegion GetSubRegion

func (*Six910Mysql) GetSubRegionList

func (d *Six910Mysql) GetSubRegionList(regionID int64) *[]mdb.SubRegion

GetSubRegionList GetSubRegionList

func (*Six910Mysql) GetTaxRate added in v1.0.20

func (d *Six910Mysql) GetTaxRate(country string, state string, storeID int64) *[]mdb.TaxRate

GetTaxRate GetTaxRate

func (*Six910Mysql) GetTaxRateList added in v1.0.20

func (d *Six910Mysql) GetTaxRateList(storeID int64) *[]mdb.TaxRate

GetTaxRateList GetTaxRateList

func (*Six910Mysql) GetVisitorData added in v1.0.33

func (d *Six910Mysql) GetVisitorData(storeID int64) *[]mdb.VisitorData

GetVisitorData GetVisitorData

func (*Six910Mysql) GetZoneZipListByExclusion

func (d *Six910Mysql) GetZoneZipListByExclusion(exID int64) *[]mdb.ZoneZip

GetZoneZipListByExclusion GetZoneZipListByExclusion

func (*Six910Mysql) GetZoneZipListByInclusion

func (d *Six910Mysql) GetZoneZipListByInclusion(incID int64) *[]mdb.ZoneZip

GetZoneZipListByInclusion GetZoneZipListByInclusion

func (*Six910Mysql) ProductSearch added in v1.2.0

func (d *Six910Mysql) ProductSearch(p *mdb.ProductSearch) *[]mdb.Product

ProductSearch ProductSearch

func (*Six910Mysql) UpdateAddress

func (d *Six910Mysql) UpdateAddress(ad *mdb.Address) bool

UpdateAddress UpdateAddress

func (*Six910Mysql) UpdateCart

func (d *Six910Mysql) UpdateCart(c *mdb.Cart) bool

UpdateCart UpdateCart

func (*Six910Mysql) UpdateCartItem

func (d *Six910Mysql) UpdateCartItem(ci *mdb.CartItem) bool

UpdateCartItem UpdateCartItem

func (*Six910Mysql) UpdateCategory

func (d *Six910Mysql) UpdateCategory(c *mdb.Category) bool

UpdateCategory UpdateCategory

func (*Six910Mysql) UpdateCustomer

func (d *Six910Mysql) UpdateCustomer(c *mdb.Customer) bool

UpdateCustomer UpdateCustomer

func (*Six910Mysql) UpdateDataStoreWriteLock

func (d *Six910Mysql) UpdateDataStoreWriteLock(w *mdb.DataStoreWriteLock) bool

UpdateDataStoreWriteLock UpdateDataStoreWriteLock

func (*Six910Mysql) UpdateDistributor

func (d *Six910Mysql) UpdateDistributor(ds *mdb.Distributor) bool

UpdateDistributor UpdateDistributor

func (*Six910Mysql) UpdateExcludedSubRegion

func (d *Six910Mysql) UpdateExcludedSubRegion(e *mdb.ExcludedSubRegion) bool

UpdateExcludedSubRegion UpdateExcludedSubRegion

func (*Six910Mysql) UpdateIncludedSubRegion

func (d *Six910Mysql) UpdateIncludedSubRegion(e *mdb.IncludedSubRegion) bool

UpdateIncludedSubRegion UpdateIncludedSubRegion

func (*Six910Mysql) UpdateInstance

func (d *Six910Mysql) UpdateInstance(i *mdb.Instances) bool

UpdateInstance UpdateInstance

func (*Six910Mysql) UpdateInsurance

func (d *Six910Mysql) UpdateInsurance(i *mdb.Insurance) bool

UpdateInsurance UpdateInsurance

func (*Six910Mysql) UpdateLocalAccount

func (d *Six910Mysql) UpdateLocalAccount(c *mdb.LocalAccount) bool

UpdateLocalAccount UpdateLocalAccount

func (*Six910Mysql) UpdateLocalDatastore

func (d *Six910Mysql) UpdateLocalDatastore(ds *mdb.LocalDataStore) bool

UpdateLocalDatastore UpdateLocalDatastore

func (*Six910Mysql) UpdateOrder

func (d *Six910Mysql) UpdateOrder(o *mdb.Order) bool

UpdateOrder UpdateOrder

func (*Six910Mysql) UpdateOrderItem

func (d *Six910Mysql) UpdateOrderItem(i *mdb.OrderItem) bool

UpdateOrderItem UpdateOrderItem

func (*Six910Mysql) UpdatePaymentGateway

func (d *Six910Mysql) UpdatePaymentGateway(pgw *mdb.PaymentGateway) bool

UpdatePaymentGateway UpdatePaymentGateway

func (*Six910Mysql) UpdatePlugin

func (d *Six910Mysql) UpdatePlugin(p *mdb.Plugins) bool

UpdatePlugin UpdatePlugin

func (*Six910Mysql) UpdateProduct

func (d *Six910Mysql) UpdateProduct(p *mdb.Product) bool

UpdateProduct UpdateProduct

func (*Six910Mysql) UpdateProductQuantity added in v1.0.32

func (d *Six910Mysql) UpdateProductQuantity(p *mdb.Product) bool

UpdateProductQuantity UpdateProductQuantity

func (*Six910Mysql) UpdateRegion

func (d *Six910Mysql) UpdateRegion(r *mdb.Region) bool

UpdateRegion UpdateRegion

func (*Six910Mysql) UpdateSecurity

func (d *Six910Mysql) UpdateSecurity(s *mdb.Security) bool

UpdateSecurity UpdateSecurity

func (*Six910Mysql) UpdateShipment

func (d *Six910Mysql) UpdateShipment(s *mdb.Shipment) bool

UpdateShipment UpdateShipment

func (*Six910Mysql) UpdateShipmentBox

func (d *Six910Mysql) UpdateShipmentBox(sb *mdb.ShipmentBox) bool

UpdateShipmentBox UpdateShipmentBox

func (*Six910Mysql) UpdateShipmentItem

func (d *Six910Mysql) UpdateShipmentItem(si *mdb.ShipmentItem) bool

UpdateShipmentItem UpdateShipmentItem

func (*Six910Mysql) UpdateShippingCarrier

func (d *Six910Mysql) UpdateShippingCarrier(c *mdb.ShippingCarrier) bool

UpdateShippingCarrier UpdateShippingCarrier

func (*Six910Mysql) UpdateShippingMethod

func (d *Six910Mysql) UpdateShippingMethod(s *mdb.ShippingMethod) bool

UpdateShippingMethod UpdateShippingMethod

func (*Six910Mysql) UpdateStore

func (d *Six910Mysql) UpdateStore(s *mdb.Store) bool

UpdateStore UpdateStore

func (*Six910Mysql) UpdateStorePlugin

func (d *Six910Mysql) UpdateStorePlugin(sp *mdb.StorePlugins) bool

UpdateStorePlugin UpdateStorePlugin

func (*Six910Mysql) UpdateSubRegion

func (d *Six910Mysql) UpdateSubRegion(s *mdb.SubRegion) bool

UpdateSubRegion UpdateSubRegion

func (*Six910Mysql) UpdateTaxRate added in v1.0.20

func (d *Six910Mysql) UpdateTaxRate(t *mdb.TaxRate) bool

UpdateTaxRate UpdateTaxRate

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL