Initial commit
basic import from Wave API to cache tables for Customers, Invoices
This commit is contained in:
commit
00e2a9fcb2
20 changed files with 1101 additions and 0 deletions
59
rattail_wave/importing/rattail.py
Normal file
59
rattail_wave/importing/rattail.py
Normal file
|
@ -0,0 +1,59 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2022 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
# Rattail is free software: you can redistribute it and/or modify it under the
|
||||
# terms of the GNU General Public License as published by the Free Software
|
||||
# Foundation, either version 3 of the License, or (at your option) any later
|
||||
# version.
|
||||
#
|
||||
# Rattail is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along with
|
||||
# Rattail. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
################################################################################
|
||||
"""
|
||||
Rattail -> Rattail data import for Wave integration
|
||||
"""
|
||||
|
||||
from rattail.importing import rattail as base
|
||||
from rattail_wave import importing as rattail_wave_importing
|
||||
|
||||
|
||||
class FromRattailToRattailWaveMixin(object):
|
||||
"""
|
||||
Add default registration of custom importers
|
||||
"""
|
||||
|
||||
def add_wave_importers(self, importers):
|
||||
importers['WaveCacheCustomer'] = WaveCacheCustomerImporter
|
||||
importers['WaveCacheInvoice'] = WaveCacheInvoiceImporter
|
||||
importers['WaveCustomer'] = WaveCustomerImporter
|
||||
return importers
|
||||
|
||||
|
||||
##############################
|
||||
# cache models
|
||||
##############################
|
||||
|
||||
class WaveCacheCustomerImporter(base.FromRattail, rattail_wave_importing.model.WaveCacheCustomerImporter):
|
||||
pass
|
||||
|
||||
class WaveCacheInvoiceImporter(base.FromRattail, rattail_wave_importing.model.WaveCacheInvoiceImporter):
|
||||
pass
|
||||
|
||||
|
||||
##############################
|
||||
# integration models
|
||||
##############################
|
||||
|
||||
class WaveCustomerImporter(base.FromRattail, rattail_wave_importing.model.WaveCustomerImporter):
|
||||
pass
|
Loading…
Add table
Add a link
Reference in a new issue