Add initial support for vendor invoice batch feature, etc.
Also included: * Add "edit batch" template, refactor "view batch" template. * Tweak form templates to allow specifying form ID and buttons HTML. * Make deleting batch rows only work when editing a batch.
This commit is contained in:
parent
aee69f5a2c
commit
2e8db05717
15 changed files with 387 additions and 92 deletions
3
tailbone/templates/vendors/invoices/create.mako
vendored
Normal file
3
tailbone/templates/vendors/invoices/create.mako
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
## -*- coding: utf-8 -*-
|
||||
<%inherit file="/batch/create.mako" />
|
||||
${parent.body()}
|
3
tailbone/templates/vendors/invoices/edit.mako
vendored
Normal file
3
tailbone/templates/vendors/invoices/edit.mako
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
## -*- coding: utf-8 -*-
|
||||
<%inherit file="/batch/edit.mako" />
|
||||
${parent.body()}
|
3
tailbone/templates/vendors/invoices/index.mako
vendored
Normal file
3
tailbone/templates/vendors/invoices/index.mako
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
## -*- coding: utf-8 -*-
|
||||
<%inherit file="/batch/index.mako" />
|
||||
${parent.body()}
|
3
tailbone/templates/vendors/invoices/view.mako
vendored
Normal file
3
tailbone/templates/vendors/invoices/view.mako
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
## -*- coding: utf-8 -*-
|
||||
<%inherit file="/batch/view.mako" />
|
||||
${parent.body()}
|
Loading…
Add table
Add a link
Reference in a new issue