Changeset - e046ecf25447
[Not reviewed]
0 1 0
Lance Edgar - 5 years ago 2019-07-24 22:05:45
ledgar@techsupport.coop
Fix bug for `Department.tax` attribute
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general) First comment
corepos/db/model.py
Show inline comments
 
@@ -47,7 +47,7 @@ class Department(Base):
 

	
 
    name = sa.Column('dept_name', sa.String(length=30), nullable=True)
 

	
 
    tax = sa.Column(sa.Boolean(), nullable=True)
 
    tax = sa.Column('dept_tax', sa.Boolean(), nullable=True)
 

	
 
    food_stampable = sa.Column('dept_fs', sa.Boolean(), nullable=True)
 

	
0 comments (0 inline, 0 general) First comment
You need to be logged in to comment. Login now