urls.py 952 B

123456789101112131415161718192021222324252627
  1. # coding=utf-8
  2. from django.conf.urls import url
  3. from views import *
  4. urlpatterns = (
  5. url(r'^home/data/$', home_data),
  6. url(r'^warehouse/material/data/$', material_data),
  7. url(r'^warehouse/consumable/data/$', consumable_data),
  8. url(r'^warehouse/goods/data/$', goods_data),
  9. url(r'^material_deliver/options/$', material_deliver_options),
  10. url(r'^goods_deliver/options/$', goods_deliver_options),
  11. url(r'^material_deliver/delete_details/$', material_delete_details),
  12. url(r'^goods_deliver/delete_details/$', goods_delete_details),
  13. url(r'^purchase/table_touch/$', table_touch),
  14. url(r'^purchase/payment_detail/$', payment_detail),
  15. url(r'^purchase/invoice_detail/$', invoice_detail),
  16. url(r'^sale_plan/customer_select/$', customer_select),
  17. url(r'^sale_plan/delete_details/$', plan_delete_details),
  18. url(r'^sale_order/delete_details/$', order_delete_details),
  19. url(r'^stock_options/$', stock_options),
  20. )