├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── blueprints ├── __init__.py ├── auth │ ├── __init__.py │ ├── action.py │ ├── tasks │ │ ├── README.md │ │ ├── __init__.py │ │ ├── cron_base.py │ │ ├── export_base.py │ │ ├── export_finance.py │ │ ├── export_inv.py │ │ ├── export_invwarn.py │ │ ├── export_stockin.py │ │ ├── export_stockout.py │ │ ├── import_base.py │ │ ├── import_inv.py │ │ ├── import_stockin.py │ │ └── import_stockout.py │ ├── views.py │ └── views_async.py ├── finance │ ├── __init__.py │ ├── action.py │ ├── stat_views.py │ └── views.py ├── index │ ├── __init__.py │ ├── action.py │ ├── chart_views.py │ └── views.py ├── inv │ ├── __init__.py │ ├── action.py │ ├── views.py │ ├── views_freeze.py │ └── views_replenish.py ├── qimen │ ├── __init__.py │ ├── action.py │ ├── qimen.md │ └── views.py ├── stockin │ ├── __init__.py │ ├── action.py │ └── views.py ├── stockout │ ├── __init__.py │ ├── action.py │ ├── action_merge.py │ ├── action_waybill.py │ ├── views.py │ └── views_merge.py └── warehouse │ ├── __init__.py │ └── views.py ├── extensions ├── __init__.py ├── cacheext.py ├── celeryext.py ├── database.py ├── hueyext.py ├── i18n.py ├── i18n.yaml └── permissions.py ├── manage.py ├── migrations ├── README ├── alembic.ini ├── env.py └── script.py.mako ├── models ├── __init__.py ├── asyncmodel.py ├── auth.py ├── finance.py ├── inv.py ├── stockin.py ├── stockout.py └── warehouse.py ├── requirements.txt ├── run.py ├── run.sh ├── settings.py ├── settings_local.py ├── static ├── audio │ ├── dong.wav │ └── err.wav ├── echarts.min.js ├── echarts.simple.min.js ├── jquery.barcode.min.js ├── jquery.min.js ├── jquery.mockjson.js ├── jquery.print.min.js ├── utils.js └── xlsx │ ├── 入库单.xlsx │ ├── 出库单.xlsx │ ├── 合作伙伴.xlsx │ ├── 员工.xlsx │ ├── 工作区.xlsx │ ├── 工资单模板.xlsx │ ├── 库位.xlsx │ ├── 库区.xlsx │ ├── 库存.xlsx │ ├── 生产单.xlsx │ ├── 盘点单.xlsx │ ├── 移库单.xlsx │ ├── 联系人.xlsx │ ├── 调整单.xlsx │ ├── 货品.xlsx │ ├── 货品配料.xlsx │ ├── 货类.xlsx │ ├── 采购单.xlsx │ ├── 采购计划.xlsx │ └── 销售单.xlsx ├── supervisord.ini ├── templates ├── index.html ├── login.html ├── login_pda.html ├── mtwms_login.html └── register.html ├── utils ├── __init__.py ├── base.py ├── flask_tools.py ├── functions.py ├── oss.py ├── sms.py ├── upload.py └── waybill │ ├── __init__.py │ ├── cainiao.py │ ├── jd.py │ ├── kdniao.py │ └── waybill.md └── uwsgi.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/app.py -------------------------------------------------------------------------------- /blueprints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints/auth/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/action.py -------------------------------------------------------------------------------- /blueprints/auth/tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/tasks/README.md -------------------------------------------------------------------------------- /blueprints/auth/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints/auth/tasks/cron_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/tasks/cron_base.py -------------------------------------------------------------------------------- /blueprints/auth/tasks/export_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/tasks/export_base.py -------------------------------------------------------------------------------- /blueprints/auth/tasks/export_finance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/tasks/export_finance.py -------------------------------------------------------------------------------- /blueprints/auth/tasks/export_inv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/tasks/export_inv.py -------------------------------------------------------------------------------- /blueprints/auth/tasks/export_invwarn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/tasks/export_invwarn.py -------------------------------------------------------------------------------- /blueprints/auth/tasks/export_stockin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/tasks/export_stockin.py -------------------------------------------------------------------------------- /blueprints/auth/tasks/export_stockout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/tasks/export_stockout.py -------------------------------------------------------------------------------- /blueprints/auth/tasks/import_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/tasks/import_base.py -------------------------------------------------------------------------------- /blueprints/auth/tasks/import_inv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/tasks/import_inv.py -------------------------------------------------------------------------------- /blueprints/auth/tasks/import_stockin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/tasks/import_stockin.py -------------------------------------------------------------------------------- /blueprints/auth/tasks/import_stockout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/tasks/import_stockout.py -------------------------------------------------------------------------------- /blueprints/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/views.py -------------------------------------------------------------------------------- /blueprints/auth/views_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/auth/views_async.py -------------------------------------------------------------------------------- /blueprints/finance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints/finance/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/finance/action.py -------------------------------------------------------------------------------- /blueprints/finance/stat_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/finance/stat_views.py -------------------------------------------------------------------------------- /blueprints/finance/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/finance/views.py -------------------------------------------------------------------------------- /blueprints/index/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints/index/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/index/action.py -------------------------------------------------------------------------------- /blueprints/index/chart_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/index/chart_views.py -------------------------------------------------------------------------------- /blueprints/index/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/index/views.py -------------------------------------------------------------------------------- /blueprints/inv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints/inv/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/inv/action.py -------------------------------------------------------------------------------- /blueprints/inv/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/inv/views.py -------------------------------------------------------------------------------- /blueprints/inv/views_freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/inv/views_freeze.py -------------------------------------------------------------------------------- /blueprints/inv/views_replenish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/inv/views_replenish.py -------------------------------------------------------------------------------- /blueprints/qimen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints/qimen/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/qimen/action.py -------------------------------------------------------------------------------- /blueprints/qimen/qimen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/qimen/qimen.md -------------------------------------------------------------------------------- /blueprints/qimen/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/qimen/views.py -------------------------------------------------------------------------------- /blueprints/stockin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints/stockin/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/stockin/action.py -------------------------------------------------------------------------------- /blueprints/stockin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/stockin/views.py -------------------------------------------------------------------------------- /blueprints/stockout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints/stockout/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/stockout/action.py -------------------------------------------------------------------------------- /blueprints/stockout/action_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/stockout/action_merge.py -------------------------------------------------------------------------------- /blueprints/stockout/action_waybill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/stockout/action_waybill.py -------------------------------------------------------------------------------- /blueprints/stockout/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/stockout/views.py -------------------------------------------------------------------------------- /blueprints/stockout/views_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/stockout/views_merge.py -------------------------------------------------------------------------------- /blueprints/warehouse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints/warehouse/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/blueprints/warehouse/views.py -------------------------------------------------------------------------------- /extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/cacheext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/extensions/cacheext.py -------------------------------------------------------------------------------- /extensions/celeryext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/extensions/celeryext.py -------------------------------------------------------------------------------- /extensions/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/extensions/database.py -------------------------------------------------------------------------------- /extensions/hueyext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/extensions/hueyext.py -------------------------------------------------------------------------------- /extensions/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/extensions/i18n.py -------------------------------------------------------------------------------- /extensions/i18n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/extensions/i18n.yaml -------------------------------------------------------------------------------- /extensions/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/extensions/permissions.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/manage.py -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | from .finance import Money -------------------------------------------------------------------------------- /models/asyncmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/models/asyncmodel.py -------------------------------------------------------------------------------- /models/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/models/auth.py -------------------------------------------------------------------------------- /models/finance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/models/finance.py -------------------------------------------------------------------------------- /models/inv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/models/inv.py -------------------------------------------------------------------------------- /models/stockin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/models/stockin.py -------------------------------------------------------------------------------- /models/stockout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/models/stockout.py -------------------------------------------------------------------------------- /models/warehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/models/warehouse.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/run.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/run.sh -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/settings.py -------------------------------------------------------------------------------- /settings_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/settings_local.py -------------------------------------------------------------------------------- /static/audio/dong.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/audio/dong.wav -------------------------------------------------------------------------------- /static/audio/err.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/audio/err.wav -------------------------------------------------------------------------------- /static/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/echarts.min.js -------------------------------------------------------------------------------- /static/echarts.simple.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/echarts.simple.min.js -------------------------------------------------------------------------------- /static/jquery.barcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/jquery.barcode.min.js -------------------------------------------------------------------------------- /static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/jquery.min.js -------------------------------------------------------------------------------- /static/jquery.mockjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/jquery.mockjson.js -------------------------------------------------------------------------------- /static/jquery.print.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/jquery.print.min.js -------------------------------------------------------------------------------- /static/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/utils.js -------------------------------------------------------------------------------- /static/xlsx/入库单.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/入库单.xlsx -------------------------------------------------------------------------------- /static/xlsx/出库单.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/出库单.xlsx -------------------------------------------------------------------------------- /static/xlsx/合作伙伴.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/合作伙伴.xlsx -------------------------------------------------------------------------------- /static/xlsx/员工.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/员工.xlsx -------------------------------------------------------------------------------- /static/xlsx/工作区.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/工作区.xlsx -------------------------------------------------------------------------------- /static/xlsx/工资单模板.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/工资单模板.xlsx -------------------------------------------------------------------------------- /static/xlsx/库位.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/库位.xlsx -------------------------------------------------------------------------------- /static/xlsx/库区.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/库区.xlsx -------------------------------------------------------------------------------- /static/xlsx/库存.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/库存.xlsx -------------------------------------------------------------------------------- /static/xlsx/生产单.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/生产单.xlsx -------------------------------------------------------------------------------- /static/xlsx/盘点单.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/盘点单.xlsx -------------------------------------------------------------------------------- /static/xlsx/移库单.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/移库单.xlsx -------------------------------------------------------------------------------- /static/xlsx/联系人.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/联系人.xlsx -------------------------------------------------------------------------------- /static/xlsx/调整单.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/调整单.xlsx -------------------------------------------------------------------------------- /static/xlsx/货品.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/货品.xlsx -------------------------------------------------------------------------------- /static/xlsx/货品配料.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/货品配料.xlsx -------------------------------------------------------------------------------- /static/xlsx/货类.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/货类.xlsx -------------------------------------------------------------------------------- /static/xlsx/采购单.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/采购单.xlsx -------------------------------------------------------------------------------- /static/xlsx/采购计划.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/采购计划.xlsx -------------------------------------------------------------------------------- /static/xlsx/销售单.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/static/xlsx/销售单.xlsx -------------------------------------------------------------------------------- /supervisord.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/supervisord.ini -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/login_pda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/templates/login_pda.html -------------------------------------------------------------------------------- /templates/mtwms_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/templates/mtwms_login.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/templates/register.html -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/utils/base.py -------------------------------------------------------------------------------- /utils/flask_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/utils/flask_tools.py -------------------------------------------------------------------------------- /utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/utils/functions.py -------------------------------------------------------------------------------- /utils/oss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/utils/oss.py -------------------------------------------------------------------------------- /utils/sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/utils/sms.py -------------------------------------------------------------------------------- /utils/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/utils/upload.py -------------------------------------------------------------------------------- /utils/waybill/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/waybill/cainiao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/utils/waybill/cainiao.py -------------------------------------------------------------------------------- /utils/waybill/jd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/utils/waybill/jd.py -------------------------------------------------------------------------------- /utils/waybill/kdniao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/utils/waybill/kdniao.py -------------------------------------------------------------------------------- /utils/waybill/waybill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/utils/waybill/waybill.md -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuxiang/MT-WMS/HEAD/uwsgi.ini --------------------------------------------------------------------------------