feat(server): wip sale invoice tax rate GL entries

This commit is contained in:
Ahmed Bouhuolia
2023-09-04 18:39:49 +02:00
parent b49b45fb43
commit ac072d29fc
9 changed files with 87 additions and 16 deletions

View File

@@ -42,6 +42,7 @@ exports.up = (knex) => {
.unsigned()
.references('id')
.inTable('tax_rates');
table.decimal('tax_rate').unsigned();
});
};