├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE.md ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README.md ├── contrib └── env_gen.py ├── default.conf ├── djangosige ├── __init__.py ├── apps │ ├── __init__.py │ ├── base │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── context_version.py │ │ ├── custom_views.py │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── custom_tags.py │ │ ├── urls.py │ │ ├── views.py │ │ └── views_mixins.py │ ├── cadastro │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── forms │ │ │ ├── __init__.py │ │ │ ├── cliente.py │ │ │ ├── empresa.py │ │ │ ├── fornecedor.py │ │ │ ├── inline_formsets.py │ │ │ ├── pessoa_forms.py │ │ │ ├── produto.py │ │ │ └── transportadora.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20170625_1450.py │ │ │ ├── 0003_auto_20170714_1703.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── bancos.py │ │ │ ├── base.py │ │ │ ├── cliente.py │ │ │ ├── empresa.py │ │ │ ├── fornecedor.py │ │ │ ├── produto.py │ │ │ └── transportadora.py │ │ ├── urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── ajax_views.py │ │ │ ├── base.py │ │ │ ├── cliente.py │ │ │ ├── empresa.py │ │ │ ├── fornecedor.py │ │ │ ├── produto.py │ │ │ └── transportadora.py │ ├── compras │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── forms │ │ │ ├── __init__.py │ │ │ ├── compras.py │ │ │ └── pagamento.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20170625_1450.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── compras.py │ │ │ └── pagamento.py │ │ ├── urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── ajax_views.py │ │ │ ├── compras.py │ │ │ └── report_compras.py │ ├── estoque │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── forms │ │ │ ├── __init__.py │ │ │ ├── local.py │ │ │ └── movimento.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20170625_1450.py │ │ │ ├── 0002_initial_data.py │ │ │ ├── 0003_merge_20170625_1454.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── local.py │ │ │ └── movimento.py │ │ ├── urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── consulta.py │ │ │ ├── local.py │ │ │ └── movimento.py │ ├── financeiro │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── forms │ │ │ ├── __init__.py │ │ │ ├── lancamento.py │ │ │ └── plano.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0003_auto_20170820_1808.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── lancamento.py │ │ │ └── plano.py │ │ ├── urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── fluxo_de_caixa.py │ │ │ ├── lancamento.py │ │ │ └── plano.py │ ├── fiscal │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── forms │ │ │ ├── __init__.py │ │ │ ├── natureza_operacao.py │ │ │ ├── nota_fiscal.py │ │ │ └── tributos.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0003_auto_20170915_0904.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── natureza_operacao.py │ │ │ ├── nota_fiscal.py │ │ │ └── tributos.py │ │ ├── urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── natureza_operacao.py │ │ │ ├── nota_fiscal.py │ │ │ ├── processador_nf.py │ │ │ └── tributos.py │ ├── login │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── context_user.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ └── vendas │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── forms │ │ ├── __init__.py │ │ ├── pagamento.py │ │ └── vendas.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── models │ │ ├── __init__.py │ │ ├── pagamento.py │ │ └── vendas.py │ │ ├── urls.py │ │ └── views │ │ ├── __init__.py │ │ ├── ajax_views.py │ │ ├── pagamento.py │ │ ├── report_vendas.py │ │ └── vendas.py ├── configs │ ├── __init__.py │ ├── configs.py │ └── settings.py ├── fixtures │ └── estoque_initial_data.json ├── media │ └── imagens │ │ ├── logo.png │ │ └── user.png ├── middleware.py ├── static │ ├── css │ │ ├── bootstrap.min.css │ │ ├── iconfont │ │ │ ├── MaterialIcons-Regular.eot │ │ │ ├── MaterialIcons-Regular.ijmap │ │ │ ├── MaterialIcons-Regular.svg │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ ├── MaterialIcons-Regular.woff │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ ├── codepoints │ │ │ └── material-icons.css │ │ ├── jquery-ui │ │ │ ├── images │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ └── jquery-ui.theme.min.css │ │ ├── jquery.datetimepicker.css │ │ ├── materialize.css │ │ ├── multi-select.css │ │ └── style.css │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── icons │ │ └── remove-icon.svg │ ├── img │ │ └── switch.png │ ├── js │ │ ├── admin.js │ │ ├── bootstrap │ │ │ └── bootstrap.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.datetimepicker.full.min.js │ │ ├── jquery.mask.js │ │ ├── jquery.multi-select.js │ │ └── jquery │ │ │ └── jquery-3.0.0.min.js │ └── tabelas │ │ ├── bancos │ │ └── bancos.csv │ │ ├── cest │ │ └── cest.csv │ │ ├── cfop │ │ └── cfop_2015_002.csv │ │ ├── municipios │ │ ├── AC.csv │ │ ├── AL.csv │ │ ├── AM.csv │ │ ├── AP.csv │ │ ├── BA.csv │ │ ├── CE.csv │ │ ├── DF.csv │ │ ├── ES.csv │ │ ├── GO.csv │ │ ├── MA.csv │ │ ├── MG.csv │ │ ├── MS.csv │ │ ├── MT.csv │ │ ├── PA.csv │ │ ├── PB.csv │ │ ├── PE.csv │ │ ├── PI.csv │ │ ├── PR.csv │ │ ├── RJ.csv │ │ ├── RN.csv │ │ ├── RO.csv │ │ ├── RR.csv │ │ ├── RS.csv │ │ ├── SC.csv │ │ ├── SE.csv │ │ ├── SP.csv │ │ ├── TO.csv │ │ ├── cmun_parse.py │ │ └── codigos_municipios.csv │ │ └── ncm │ │ └── ncm171a.csv ├── templates │ ├── 404.html │ ├── 500.html │ ├── base │ │ ├── base.html │ │ ├── datepicker_js.html │ │ ├── datetimepicker_js.html │ │ ├── form_error_alert.html │ │ ├── form_error_msg.html │ │ ├── index.html │ │ ├── load_jqueryui.html │ │ ├── modal.html │ │ ├── msg_aviso.html │ │ ├── msg_error.html │ │ ├── msg_sucesso.html │ │ ├── popup_form.html │ │ ├── search.html │ │ ├── title_header.html │ │ └── tooltip_js.html │ ├── cadastro │ │ ├── cliente │ │ │ ├── cliente_blockjs.html │ │ │ ├── cliente_list_table.html │ │ │ ├── cliente_tab_inf_gerais.html │ │ │ └── cliente_tab_vendas.html │ │ ├── empresa │ │ │ ├── empresa_blockjs.html │ │ │ ├── empresa_list_table.html │ │ │ └── empresa_tab_inf_gerais.html │ │ ├── fornecedor │ │ │ ├── fornecedor_blockjs.html │ │ │ ├── fornecedor_list_table.html │ │ │ ├── fornecedor_tab_compras.html │ │ │ └── fornecedor_tab_inf_gerais.html │ │ ├── obj_info.html │ │ ├── pessoa_add.html │ │ ├── pessoa_blockjs.html │ │ ├── pessoa_edit.html │ │ ├── pessoa_list.html │ │ ├── pessoa_tab_list.html │ │ ├── produto │ │ │ ├── add_popup.html │ │ │ ├── categoria_list.html │ │ │ ├── marca_list.html │ │ │ ├── produto_add.html │ │ │ ├── produto_edit.html │ │ │ ├── produto_jsblock.html │ │ │ ├── produto_list.html │ │ │ ├── produto_tab_dados_gerais.html │ │ │ ├── produto_tab_estoque.html │ │ │ ├── produto_tab_fiscal.html │ │ │ ├── produto_tab_list.html │ │ │ └── unidade_list.html │ │ └── transportadora │ │ │ ├── transportadora_blockjs.html │ │ │ ├── transportadora_list_table.html │ │ │ └── transportadora_tab_inf_gerais.html │ ├── compras │ │ ├── compra_form.html │ │ ├── compra_jsblock.html │ │ ├── modal_calculo_imposto.html │ │ ├── orcamento_compra │ │ │ ├── orcamento_compra_add.html │ │ │ ├── orcamento_compra_edit.html │ │ │ └── orcamento_compra_list.html │ │ └── pedido_compra │ │ │ ├── pedido_compra_add.html │ │ │ ├── pedido_compra_edit.html │ │ │ └── pedido_compra_list.html │ ├── estoque │ │ ├── consulta │ │ │ └── consulta_estoque.html │ │ ├── local │ │ │ ├── local_add.html │ │ │ └── local_list.html │ │ └── movimento │ │ │ ├── entradas_estoque_list_table.html │ │ │ ├── movimento_estoque_add.html │ │ │ ├── movimento_estoque_detail.html │ │ │ ├── movimento_estoque_form.html │ │ │ ├── movimento_estoque_jsblock.html │ │ │ ├── movimento_estoque_list.html │ │ │ ├── saidas_estoque_list_table.html │ │ │ ├── todos_movimentos_list_table.html │ │ │ └── transferencias_estoque_list_table.html │ ├── financeiro │ │ ├── fluxo_de_caixa │ │ │ └── fluxo.html │ │ ├── lancamento │ │ │ ├── conta_pagar_list_table.html │ │ │ ├── conta_receber_list_table.html │ │ │ ├── lancamento_add.html │ │ │ ├── lancamento_edit.html │ │ │ ├── lancamento_form.html │ │ │ ├── lancamento_jsblock.html │ │ │ ├── lancamento_list.html │ │ │ ├── modal_selecionar_data.html │ │ │ ├── pagamentos_list_table.html │ │ │ ├── recebimentos_list_table.html │ │ │ └── todos_lancamentos_list_table.html │ │ └── plano │ │ │ ├── grupo_add.html │ │ │ ├── grupo_edit.html │ │ │ ├── grupo_form.html │ │ │ └── plano.html │ ├── fiscal │ │ ├── grupo_fiscal │ │ │ ├── grupo_fiscal_add.html │ │ │ ├── grupo_fiscal_edit.html │ │ │ ├── grupo_fiscal_form.html │ │ │ ├── grupo_fiscal_jsblock.html │ │ │ └── grupo_fiscal_list.html │ │ ├── natureza_operacao │ │ │ ├── natureza_operacao_add.html │ │ │ ├── natureza_operacao_edit.html │ │ │ └── natureza_operacao_list.html │ │ └── nota_fiscal │ │ │ ├── modal_detalhe_produto_compra.html │ │ │ ├── modal_detalhe_produto_venda.html │ │ │ ├── modal_importar_nota.html │ │ │ ├── nota_fiscal_add.html │ │ │ ├── nota_fiscal_config.html │ │ │ ├── nota_fiscal_edit.html │ │ │ ├── nota_fiscal_form.html │ │ │ ├── nota_fiscal_jsblock.html │ │ │ ├── nota_fiscal_list.html │ │ │ └── nota_fiscal_sefaz.html │ ├── formset │ │ ├── formset.html │ │ ├── formset_fields.html │ │ ├── formset_fields_sem_padrao.html │ │ ├── formset_table.html │ │ └── formset_tr_field.html │ ├── login │ │ ├── detalhe_users.html │ │ ├── editar_perfil.html │ │ ├── editar_permissoes_user.html │ │ ├── esqueceu_senha.html │ │ ├── lista_users.html │ │ ├── login.html │ │ ├── logo.html │ │ ├── perfil.html │ │ ├── registrar.html │ │ ├── selecionar_minha_empresa.html │ │ ├── trocar_senha.html │ │ └── trocar_senha_email.html │ └── vendas │ │ ├── modal_calculo_imposto.html │ │ ├── orcamento_venda │ │ ├── orcamento_venda_add.html │ │ ├── orcamento_venda_edit.html │ │ └── orcamento_venda_list.html │ │ ├── pagamento │ │ ├── condicao_pagamento_add.html │ │ ├── condicao_pagamento_edit.html │ │ ├── condicao_pagamento_form.html │ │ └── condicao_pagamento_list.html │ │ ├── pedido_venda │ │ ├── pedido_venda_add.html │ │ ├── pedido_venda_edit.html │ │ └── pedido_venda_list.html │ │ ├── venda_form.html │ │ └── venda_jsblock.html ├── tests │ ├── README.md │ ├── __init__.py │ ├── base │ │ ├── __init__.py │ │ └── test_views.py │ ├── cadastro │ │ ├── __init__.py │ │ └── test_views.py │ ├── compras │ │ ├── __init__.py │ │ └── test_views.py │ ├── estoque │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── financeiro │ │ ├── __init__.py │ │ └── test_views.py │ ├── fiscal │ │ ├── __init__.py │ │ └── test_views.py │ ├── fixtures │ │ ├── initial_user.json │ │ └── test_db_backup.json │ ├── login │ │ ├── __init__.py │ │ └── test_views.py │ ├── test_case.py │ ├── test_settings.py │ └── vendas │ │ ├── __init__.py │ │ └── test_views.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── manage.py ├── requirements.txt ├── requirements_test.txt └── setup.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/README.md -------------------------------------------------------------------------------- /contrib/env_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/contrib/env_gen.py -------------------------------------------------------------------------------- /default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/default.conf -------------------------------------------------------------------------------- /djangosige/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | __version__ = '0.0.1' 4 | -------------------------------------------------------------------------------- /djangosige/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/base/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/base/apps.py -------------------------------------------------------------------------------- /djangosige/apps/base/context_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/base/context_version.py -------------------------------------------------------------------------------- /djangosige/apps/base/custom_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/base/custom_views.py -------------------------------------------------------------------------------- /djangosige/apps/base/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/base/templatetags/custom_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/base/templatetags/custom_tags.py -------------------------------------------------------------------------------- /djangosige/apps/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/base/urls.py -------------------------------------------------------------------------------- /djangosige/apps/base/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/base/views.py -------------------------------------------------------------------------------- /djangosige/apps/base/views_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/base/views_mixins.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/cadastro/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/apps.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/forms/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/forms/cliente.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/forms/cliente.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/forms/empresa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/forms/empresa.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/forms/fornecedor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/forms/fornecedor.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/forms/inline_formsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/forms/inline_formsets.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/forms/pessoa_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/forms/pessoa_forms.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/forms/produto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/forms/produto.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/forms/transportadora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/forms/transportadora.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/migrations/0001_initial.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/migrations/0002_auto_20170625_1450.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/migrations/0002_auto_20170625_1450.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/migrations/0003_auto_20170714_1703.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/migrations/0003_auto_20170714_1703.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/cadastro/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/models/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/models/bancos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/models/bancos.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/models/base.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/models/cliente.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/models/cliente.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/models/empresa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/models/empresa.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/models/fornecedor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/models/fornecedor.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/models/produto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/models/produto.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/models/transportadora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/models/transportadora.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/urls.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/views/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/views/ajax_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/views/ajax_views.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/views/base.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/views/cliente.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/views/cliente.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/views/empresa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/views/empresa.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/views/fornecedor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/views/fornecedor.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/views/produto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/views/produto.py -------------------------------------------------------------------------------- /djangosige/apps/cadastro/views/transportadora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/cadastro/views/transportadora.py -------------------------------------------------------------------------------- /djangosige/apps/compras/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/compras/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/apps.py -------------------------------------------------------------------------------- /djangosige/apps/compras/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/forms/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/compras/forms/compras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/forms/compras.py -------------------------------------------------------------------------------- /djangosige/apps/compras/forms/pagamento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/forms/pagamento.py -------------------------------------------------------------------------------- /djangosige/apps/compras/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/migrations/0001_initial.py -------------------------------------------------------------------------------- /djangosige/apps/compras/migrations/0002_auto_20170625_1450.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/migrations/0002_auto_20170625_1450.py -------------------------------------------------------------------------------- /djangosige/apps/compras/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/compras/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/models/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/compras/models/compras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/models/compras.py -------------------------------------------------------------------------------- /djangosige/apps/compras/models/pagamento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/models/pagamento.py -------------------------------------------------------------------------------- /djangosige/apps/compras/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/urls.py -------------------------------------------------------------------------------- /djangosige/apps/compras/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/views/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/compras/views/ajax_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/views/ajax_views.py -------------------------------------------------------------------------------- /djangosige/apps/compras/views/compras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/views/compras.py -------------------------------------------------------------------------------- /djangosige/apps/compras/views/report_compras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/compras/views/report_compras.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/estoque/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/apps.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/forms/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/forms/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/forms/local.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/forms/movimento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/forms/movimento.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/migrations/0001_initial.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/migrations/0002_auto_20170625_1450.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/migrations/0002_auto_20170625_1450.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/migrations/0002_initial_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/migrations/0002_initial_data.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/migrations/0003_merge_20170625_1454.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/migrations/0003_merge_20170625_1454.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/estoque/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/models/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/models/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/models/local.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/models/movimento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/models/movimento.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/urls.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/views/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/views/consulta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/views/consulta.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/views/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/views/local.py -------------------------------------------------------------------------------- /djangosige/apps/estoque/views/movimento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/estoque/views/movimento.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/financeiro/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/apps.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/forms/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/forms/lancamento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/forms/lancamento.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/forms/plano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/forms/plano.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/migrations/0001_initial.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/migrations/0003_auto_20170820_1808.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/migrations/0003_auto_20170820_1808.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/financeiro/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/models/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/models/lancamento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/models/lancamento.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/models/plano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/models/plano.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/urls.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/views/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/views/fluxo_de_caixa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/views/fluxo_de_caixa.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/views/lancamento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/views/lancamento.py -------------------------------------------------------------------------------- /djangosige/apps/financeiro/views/plano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/financeiro/views/plano.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/fiscal/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/apps.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/forms/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/forms/natureza_operacao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/forms/natureza_operacao.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/forms/nota_fiscal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/forms/nota_fiscal.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/forms/tributos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/forms/tributos.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/migrations/0001_initial.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/migrations/0003_auto_20170915_0904.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/migrations/0003_auto_20170915_0904.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/fiscal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/models/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/models/natureza_operacao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/models/natureza_operacao.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/models/nota_fiscal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/models/nota_fiscal.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/models/tributos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/models/tributos.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/urls.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/views/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/views/natureza_operacao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/views/natureza_operacao.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/views/nota_fiscal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/views/nota_fiscal.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/views/processador_nf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/views/processador_nf.py -------------------------------------------------------------------------------- /djangosige/apps/fiscal/views/tributos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/fiscal/views/tributos.py -------------------------------------------------------------------------------- /djangosige/apps/login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/login/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/login/apps.py -------------------------------------------------------------------------------- /djangosige/apps/login/context_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/login/context_user.py -------------------------------------------------------------------------------- /djangosige/apps/login/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/login/forms.py -------------------------------------------------------------------------------- /djangosige/apps/login/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/login/migrations/0001_initial.py -------------------------------------------------------------------------------- /djangosige/apps/login/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/login/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/login/models.py -------------------------------------------------------------------------------- /djangosige/apps/login/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/login/urls.py -------------------------------------------------------------------------------- /djangosige/apps/login/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/login/views.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/vendas/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/apps.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/forms/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/forms/pagamento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/forms/pagamento.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/forms/vendas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/forms/vendas.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/migrations/0001_initial.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/apps/vendas/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/models/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/models/pagamento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/models/pagamento.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/models/vendas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/models/vendas.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/urls.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/views/__init__.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/views/ajax_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/views/ajax_views.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/views/pagamento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/views/pagamento.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/views/report_vendas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/views/report_vendas.py -------------------------------------------------------------------------------- /djangosige/apps/vendas/views/vendas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/apps/vendas/views/vendas.py -------------------------------------------------------------------------------- /djangosige/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/configs/__init__.py -------------------------------------------------------------------------------- /djangosige/configs/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/configs/configs.py -------------------------------------------------------------------------------- /djangosige/configs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/configs/settings.py -------------------------------------------------------------------------------- /djangosige/fixtures/estoque_initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/fixtures/estoque_initial_data.json -------------------------------------------------------------------------------- /djangosige/media/imagens/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/media/imagens/logo.png -------------------------------------------------------------------------------- /djangosige/media/imagens/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/media/imagens/user.png -------------------------------------------------------------------------------- /djangosige/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/middleware.py -------------------------------------------------------------------------------- /djangosige/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /djangosige/static/css/iconfont/MaterialIcons-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/iconfont/MaterialIcons-Regular.eot -------------------------------------------------------------------------------- /djangosige/static/css/iconfont/MaterialIcons-Regular.ijmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/iconfont/MaterialIcons-Regular.ijmap -------------------------------------------------------------------------------- /djangosige/static/css/iconfont/MaterialIcons-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/iconfont/MaterialIcons-Regular.svg -------------------------------------------------------------------------------- /djangosige/static/css/iconfont/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/iconfont/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /djangosige/static/css/iconfont/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/iconfont/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /djangosige/static/css/iconfont/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/iconfont/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /djangosige/static/css/iconfont/codepoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/iconfont/codepoints -------------------------------------------------------------------------------- /djangosige/static/css/iconfont/material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/iconfont/material-icons.css -------------------------------------------------------------------------------- /djangosige/static/css/jquery-ui/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/jquery-ui/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /djangosige/static/css/jquery-ui/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/jquery-ui/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /djangosige/static/css/jquery-ui/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/jquery-ui/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /djangosige/static/css/jquery-ui/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/jquery-ui/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /djangosige/static/css/jquery-ui/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/jquery-ui/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /djangosige/static/css/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /djangosige/static/css/jquery-ui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/jquery-ui/jquery-ui.min.css -------------------------------------------------------------------------------- /djangosige/static/css/jquery-ui/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/jquery-ui/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /djangosige/static/css/jquery-ui/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/jquery-ui/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /djangosige/static/css/jquery.datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/jquery.datetimepicker.css -------------------------------------------------------------------------------- /djangosige/static/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/materialize.css -------------------------------------------------------------------------------- /djangosige/static/css/multi-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/multi-select.css -------------------------------------------------------------------------------- /djangosige/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/css/style.css -------------------------------------------------------------------------------- /djangosige/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/favicon.ico -------------------------------------------------------------------------------- /djangosige/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /djangosige/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /djangosige/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /djangosige/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /djangosige/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /djangosige/static/icons/remove-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/icons/remove-icon.svg -------------------------------------------------------------------------------- /djangosige/static/img/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/img/switch.png -------------------------------------------------------------------------------- /djangosige/static/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/js/admin.js -------------------------------------------------------------------------------- /djangosige/static/js/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/js/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /djangosige/static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /djangosige/static/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /djangosige/static/js/jquery.datetimepicker.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/js/jquery.datetimepicker.full.min.js -------------------------------------------------------------------------------- /djangosige/static/js/jquery.mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/js/jquery.mask.js -------------------------------------------------------------------------------- /djangosige/static/js/jquery.multi-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/js/jquery.multi-select.js -------------------------------------------------------------------------------- /djangosige/static/js/jquery/jquery-3.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/js/jquery/jquery-3.0.0.min.js -------------------------------------------------------------------------------- /djangosige/static/tabelas/bancos/bancos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/bancos/bancos.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/cest/cest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/cest/cest.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/cfop/cfop_2015_002.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/cfop/cfop_2015_002.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/AC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/AC.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/AL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/AL.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/AM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/AM.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/AP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/AP.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/BA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/BA.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/CE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/CE.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/DF.csv: -------------------------------------------------------------------------------- 1 | 5300108,Brasilia 2 | -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/ES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/ES.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/GO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/GO.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/MA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/MA.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/MG.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/MG.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/MS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/MS.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/MT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/MT.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/PA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/PA.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/PB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/PB.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/PE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/PE.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/PI.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/PI.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/PR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/PR.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/RJ.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/RJ.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/RN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/RN.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/RO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/RO.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/RR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/RR.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/RS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/RS.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/SC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/SC.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/SE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/SE.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/SP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/SP.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/TO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/TO.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/cmun_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/cmun_parse.py -------------------------------------------------------------------------------- /djangosige/static/tabelas/municipios/codigos_municipios.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/municipios/codigos_municipios.csv -------------------------------------------------------------------------------- /djangosige/static/tabelas/ncm/ncm171a.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/static/tabelas/ncm/ncm171a.csv -------------------------------------------------------------------------------- /djangosige/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/404.html -------------------------------------------------------------------------------- /djangosige/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/500.html -------------------------------------------------------------------------------- /djangosige/templates/base/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/base.html -------------------------------------------------------------------------------- /djangosige/templates/base/datepicker_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/datepicker_js.html -------------------------------------------------------------------------------- /djangosige/templates/base/datetimepicker_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/datetimepicker_js.html -------------------------------------------------------------------------------- /djangosige/templates/base/form_error_alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/form_error_alert.html -------------------------------------------------------------------------------- /djangosige/templates/base/form_error_msg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/form_error_msg.html -------------------------------------------------------------------------------- /djangosige/templates/base/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/index.html -------------------------------------------------------------------------------- /djangosige/templates/base/load_jqueryui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/load_jqueryui.html -------------------------------------------------------------------------------- /djangosige/templates/base/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/modal.html -------------------------------------------------------------------------------- /djangosige/templates/base/msg_aviso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/msg_aviso.html -------------------------------------------------------------------------------- /djangosige/templates/base/msg_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/msg_error.html -------------------------------------------------------------------------------- /djangosige/templates/base/msg_sucesso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/msg_sucesso.html -------------------------------------------------------------------------------- /djangosige/templates/base/popup_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/popup_form.html -------------------------------------------------------------------------------- /djangosige/templates/base/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/search.html -------------------------------------------------------------------------------- /djangosige/templates/base/title_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/title_header.html -------------------------------------------------------------------------------- /djangosige/templates/base/tooltip_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/base/tooltip_js.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/cliente/cliente_blockjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/cliente/cliente_blockjs.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/cliente/cliente_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/cliente/cliente_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/cliente/cliente_tab_inf_gerais.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/cliente/cliente_tab_inf_gerais.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/cliente/cliente_tab_vendas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/cliente/cliente_tab_vendas.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/empresa/empresa_blockjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/empresa/empresa_blockjs.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/empresa/empresa_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/empresa/empresa_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/empresa/empresa_tab_inf_gerais.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/empresa/empresa_tab_inf_gerais.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/fornecedor/fornecedor_blockjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/fornecedor/fornecedor_blockjs.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/fornecedor/fornecedor_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/fornecedor/fornecedor_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/fornecedor/fornecedor_tab_compras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/fornecedor/fornecedor_tab_compras.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/fornecedor/fornecedor_tab_inf_gerais.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/fornecedor/fornecedor_tab_inf_gerais.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/obj_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/obj_info.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/pessoa_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/pessoa_add.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/pessoa_blockjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/pessoa_blockjs.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/pessoa_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/pessoa_edit.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/pessoa_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/pessoa_list.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/pessoa_tab_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/pessoa_tab_list.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/produto/add_popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/produto/add_popup.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/produto/categoria_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/produto/categoria_list.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/produto/marca_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/produto/marca_list.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/produto/produto_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/produto/produto_add.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/produto/produto_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/produto/produto_edit.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/produto/produto_jsblock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/produto/produto_jsblock.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/produto/produto_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/produto/produto_list.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/produto/produto_tab_dados_gerais.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/produto/produto_tab_dados_gerais.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/produto/produto_tab_estoque.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/produto/produto_tab_estoque.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/produto/produto_tab_fiscal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/produto/produto_tab_fiscal.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/produto/produto_tab_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/produto/produto_tab_list.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/produto/unidade_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/produto/unidade_list.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/transportadora/transportadora_blockjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/transportadora/transportadora_blockjs.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/transportadora/transportadora_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/transportadora/transportadora_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/cadastro/transportadora/transportadora_tab_inf_gerais.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/cadastro/transportadora/transportadora_tab_inf_gerais.html -------------------------------------------------------------------------------- /djangosige/templates/compras/compra_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/compras/compra_form.html -------------------------------------------------------------------------------- /djangosige/templates/compras/compra_jsblock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/compras/compra_jsblock.html -------------------------------------------------------------------------------- /djangosige/templates/compras/modal_calculo_imposto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/compras/modal_calculo_imposto.html -------------------------------------------------------------------------------- /djangosige/templates/compras/orcamento_compra/orcamento_compra_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/compras/orcamento_compra/orcamento_compra_add.html -------------------------------------------------------------------------------- /djangosige/templates/compras/orcamento_compra/orcamento_compra_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/compras/orcamento_compra/orcamento_compra_edit.html -------------------------------------------------------------------------------- /djangosige/templates/compras/orcamento_compra/orcamento_compra_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/compras/orcamento_compra/orcamento_compra_list.html -------------------------------------------------------------------------------- /djangosige/templates/compras/pedido_compra/pedido_compra_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/compras/pedido_compra/pedido_compra_add.html -------------------------------------------------------------------------------- /djangosige/templates/compras/pedido_compra/pedido_compra_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/compras/pedido_compra/pedido_compra_edit.html -------------------------------------------------------------------------------- /djangosige/templates/compras/pedido_compra/pedido_compra_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/compras/pedido_compra/pedido_compra_list.html -------------------------------------------------------------------------------- /djangosige/templates/estoque/consulta/consulta_estoque.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/estoque/consulta/consulta_estoque.html -------------------------------------------------------------------------------- /djangosige/templates/estoque/local/local_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/estoque/local/local_add.html -------------------------------------------------------------------------------- /djangosige/templates/estoque/local/local_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/estoque/local/local_list.html -------------------------------------------------------------------------------- /djangosige/templates/estoque/movimento/entradas_estoque_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/estoque/movimento/entradas_estoque_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/estoque/movimento/movimento_estoque_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/estoque/movimento/movimento_estoque_add.html -------------------------------------------------------------------------------- /djangosige/templates/estoque/movimento/movimento_estoque_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/estoque/movimento/movimento_estoque_detail.html -------------------------------------------------------------------------------- /djangosige/templates/estoque/movimento/movimento_estoque_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/estoque/movimento/movimento_estoque_form.html -------------------------------------------------------------------------------- /djangosige/templates/estoque/movimento/movimento_estoque_jsblock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/estoque/movimento/movimento_estoque_jsblock.html -------------------------------------------------------------------------------- /djangosige/templates/estoque/movimento/movimento_estoque_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/estoque/movimento/movimento_estoque_list.html -------------------------------------------------------------------------------- /djangosige/templates/estoque/movimento/saidas_estoque_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/estoque/movimento/saidas_estoque_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/estoque/movimento/todos_movimentos_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/estoque/movimento/todos_movimentos_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/estoque/movimento/transferencias_estoque_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/estoque/movimento/transferencias_estoque_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/fluxo_de_caixa/fluxo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/fluxo_de_caixa/fluxo.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/lancamento/conta_pagar_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/lancamento/conta_pagar_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/lancamento/conta_receber_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/lancamento/conta_receber_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/lancamento/lancamento_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/lancamento/lancamento_add.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/lancamento/lancamento_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/lancamento/lancamento_edit.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/lancamento/lancamento_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/lancamento/lancamento_form.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/lancamento/lancamento_jsblock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/lancamento/lancamento_jsblock.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/lancamento/lancamento_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/lancamento/lancamento_list.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/lancamento/modal_selecionar_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/lancamento/modal_selecionar_data.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/lancamento/pagamentos_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/lancamento/pagamentos_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/lancamento/recebimentos_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/lancamento/recebimentos_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/lancamento/todos_lancamentos_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/lancamento/todos_lancamentos_list_table.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/plano/grupo_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/plano/grupo_add.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/plano/grupo_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/plano/grupo_edit.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/plano/grupo_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/plano/grupo_form.html -------------------------------------------------------------------------------- /djangosige/templates/financeiro/plano/plano.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/financeiro/plano/plano.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/grupo_fiscal/grupo_fiscal_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/grupo_fiscal/grupo_fiscal_add.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/grupo_fiscal/grupo_fiscal_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/grupo_fiscal/grupo_fiscal_edit.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/grupo_fiscal/grupo_fiscal_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/grupo_fiscal/grupo_fiscal_form.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/grupo_fiscal/grupo_fiscal_jsblock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/grupo_fiscal/grupo_fiscal_jsblock.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/grupo_fiscal/grupo_fiscal_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/grupo_fiscal/grupo_fiscal_list.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/natureza_operacao/natureza_operacao_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/natureza_operacao/natureza_operacao_add.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/natureza_operacao/natureza_operacao_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/natureza_operacao/natureza_operacao_edit.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/natureza_operacao/natureza_operacao_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/natureza_operacao/natureza_operacao_list.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/nota_fiscal/modal_detalhe_produto_compra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/nota_fiscal/modal_detalhe_produto_compra.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/nota_fiscal/modal_detalhe_produto_venda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/nota_fiscal/modal_detalhe_produto_venda.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/nota_fiscal/modal_importar_nota.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/nota_fiscal/modal_importar_nota.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/nota_fiscal/nota_fiscal_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/nota_fiscal/nota_fiscal_add.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/nota_fiscal/nota_fiscal_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/nota_fiscal/nota_fiscal_config.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/nota_fiscal/nota_fiscal_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/nota_fiscal/nota_fiscal_edit.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/nota_fiscal/nota_fiscal_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/nota_fiscal/nota_fiscal_form.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/nota_fiscal/nota_fiscal_jsblock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/nota_fiscal/nota_fiscal_jsblock.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/nota_fiscal/nota_fiscal_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/nota_fiscal/nota_fiscal_list.html -------------------------------------------------------------------------------- /djangosige/templates/fiscal/nota_fiscal/nota_fiscal_sefaz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/fiscal/nota_fiscal/nota_fiscal_sefaz.html -------------------------------------------------------------------------------- /djangosige/templates/formset/formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/formset/formset.html -------------------------------------------------------------------------------- /djangosige/templates/formset/formset_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/formset/formset_fields.html -------------------------------------------------------------------------------- /djangosige/templates/formset/formset_fields_sem_padrao.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/formset/formset_fields_sem_padrao.html -------------------------------------------------------------------------------- /djangosige/templates/formset/formset_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/formset/formset_table.html -------------------------------------------------------------------------------- /djangosige/templates/formset/formset_tr_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/formset/formset_tr_field.html -------------------------------------------------------------------------------- /djangosige/templates/login/detalhe_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/login/detalhe_users.html -------------------------------------------------------------------------------- /djangosige/templates/login/editar_perfil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/login/editar_perfil.html -------------------------------------------------------------------------------- /djangosige/templates/login/editar_permissoes_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/login/editar_permissoes_user.html -------------------------------------------------------------------------------- /djangosige/templates/login/esqueceu_senha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/login/esqueceu_senha.html -------------------------------------------------------------------------------- /djangosige/templates/login/lista_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/login/lista_users.html -------------------------------------------------------------------------------- /djangosige/templates/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/login/login.html -------------------------------------------------------------------------------- /djangosige/templates/login/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/login/logo.html -------------------------------------------------------------------------------- /djangosige/templates/login/perfil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/login/perfil.html -------------------------------------------------------------------------------- /djangosige/templates/login/registrar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/login/registrar.html -------------------------------------------------------------------------------- /djangosige/templates/login/selecionar_minha_empresa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/login/selecionar_minha_empresa.html -------------------------------------------------------------------------------- /djangosige/templates/login/trocar_senha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/login/trocar_senha.html -------------------------------------------------------------------------------- /djangosige/templates/login/trocar_senha_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/login/trocar_senha_email.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/modal_calculo_imposto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/modal_calculo_imposto.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/orcamento_venda/orcamento_venda_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/orcamento_venda/orcamento_venda_add.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/orcamento_venda/orcamento_venda_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/orcamento_venda/orcamento_venda_edit.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/orcamento_venda/orcamento_venda_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/orcamento_venda/orcamento_venda_list.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/pagamento/condicao_pagamento_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/pagamento/condicao_pagamento_add.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/pagamento/condicao_pagamento_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/pagamento/condicao_pagamento_edit.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/pagamento/condicao_pagamento_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/pagamento/condicao_pagamento_form.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/pagamento/condicao_pagamento_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/pagamento/condicao_pagamento_list.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/pedido_venda/pedido_venda_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/pedido_venda/pedido_venda_add.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/pedido_venda/pedido_venda_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/pedido_venda/pedido_venda_edit.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/pedido_venda/pedido_venda_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/pedido_venda/pedido_venda_list.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/venda_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/venda_form.html -------------------------------------------------------------------------------- /djangosige/templates/vendas/venda_jsblock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/templates/vendas/venda_jsblock.html -------------------------------------------------------------------------------- /djangosige/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/README.md -------------------------------------------------------------------------------- /djangosige/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/tests/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/tests/base/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/base/test_views.py -------------------------------------------------------------------------------- /djangosige/tests/cadastro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/tests/cadastro/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/cadastro/test_views.py -------------------------------------------------------------------------------- /djangosige/tests/compras/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/tests/compras/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/compras/test_views.py -------------------------------------------------------------------------------- /djangosige/tests/estoque/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/tests/estoque/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/estoque/test_models.py -------------------------------------------------------------------------------- /djangosige/tests/estoque/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/estoque/test_views.py -------------------------------------------------------------------------------- /djangosige/tests/financeiro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/tests/financeiro/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/financeiro/test_views.py -------------------------------------------------------------------------------- /djangosige/tests/fiscal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/tests/fiscal/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/fiscal/test_views.py -------------------------------------------------------------------------------- /djangosige/tests/fixtures/initial_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/fixtures/initial_user.json -------------------------------------------------------------------------------- /djangosige/tests/fixtures/test_db_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/fixtures/test_db_backup.json -------------------------------------------------------------------------------- /djangosige/tests/login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/tests/login/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/login/test_views.py -------------------------------------------------------------------------------- /djangosige/tests/test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/test_case.py -------------------------------------------------------------------------------- /djangosige/tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/test_settings.py -------------------------------------------------------------------------------- /djangosige/tests/vendas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosige/tests/vendas/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/tests/vendas/test_views.py -------------------------------------------------------------------------------- /djangosige/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/urls.py -------------------------------------------------------------------------------- /djangosige/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/djangosige/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- 1 | mock==2.0.0 2 | flake8==3.6.0 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagopena/djangoSIGE/HEAD/setup.cfg --------------------------------------------------------------------------------