111 lines
2.5 KiB
TypeScript
111 lines
2.5 KiB
TypeScript
import {
|
|
DataTypes,
|
|
InferAttributes,
|
|
InferCreationAttributes,
|
|
Model,
|
|
NonAttribute,
|
|
Sequelize,
|
|
} from "sequelize";
|
|
import { CustomerInvoiceItem } from "../../../domain";
|
|
|
|
export type CustomerInvoiceItemTaxCreationAttributes = InferCreationAttributes<
|
|
CustomerInvoiceItemTaxModel,
|
|
{ omit: "item" }
|
|
>;
|
|
|
|
export class CustomerInvoiceItemTaxModel extends Model<
|
|
InferAttributes<CustomerInvoiceItemTaxModel>,
|
|
InferCreationAttributes<CustomerInvoiceItemTaxModel>
|
|
> {
|
|
declare tax_id: string;
|
|
declare item_id: string;
|
|
|
|
declare tax_code: string; //"iva_21"
|
|
|
|
// Taxable amount (base imponible) // 100,00 €
|
|
declare taxable_amount_value: number;
|
|
declare taxable_amount_scale: number;
|
|
|
|
// Total tax amount / taxes total // 21,00 €
|
|
declare taxes_amount_value: number;
|
|
declare taxes_amount_scale: number;
|
|
|
|
// Relaciones
|
|
declare item: NonAttribute<CustomerInvoiceItem>;
|
|
|
|
static associate(database: Sequelize) {
|
|
const { CustomerInvoiceItemModel } = database.models;
|
|
|
|
CustomerInvoiceItemTaxModel.belongsTo(CustomerInvoiceItemModel, {
|
|
as: "item",
|
|
targetKey: "item_id",
|
|
foreignKey: "item_id",
|
|
onDelete: "CASCADE",
|
|
onUpdate: "CASCADE",
|
|
});
|
|
}
|
|
|
|
static hooks(database: Sequelize) {}
|
|
}
|
|
|
|
export default (database: Sequelize) => {
|
|
CustomerInvoiceItemTaxModel.init(
|
|
{
|
|
tax_id: {
|
|
type: DataTypes.UUID,
|
|
primaryKey: true,
|
|
},
|
|
|
|
item_id: {
|
|
type: DataTypes.UUID,
|
|
allowNull: false,
|
|
},
|
|
|
|
tax_code: {
|
|
type: new DataTypes.STRING(),
|
|
allowNull: false,
|
|
},
|
|
|
|
taxable_amount_value: {
|
|
type: new DataTypes.BIGINT(), // importante: evita problemas de precisión con valores grandes
|
|
allowNull: false,
|
|
defaultValue: 0,
|
|
},
|
|
|
|
taxable_amount_scale: {
|
|
type: new DataTypes.SMALLINT(),
|
|
allowNull: false,
|
|
defaultValue: 4,
|
|
},
|
|
|
|
taxes_amount_value: {
|
|
type: new DataTypes.BIGINT(), // importante: evita problemas de precisión con valores grandes
|
|
allowNull: false,
|
|
defaultValue: 0,
|
|
},
|
|
|
|
taxes_amount_scale: {
|
|
type: new DataTypes.SMALLINT(),
|
|
allowNull: false,
|
|
defaultValue: 4,
|
|
},
|
|
},
|
|
{
|
|
sequelize: database,
|
|
tableName: "customer_invoice_item_taxes",
|
|
|
|
underscored: true,
|
|
|
|
indexes: [],
|
|
|
|
whereMergeStrategy: "and", // <- cómo tratar el merge de un scope
|
|
|
|
defaultScope: {},
|
|
|
|
scopes: {},
|
|
}
|
|
);
|
|
|
|
return CustomerInvoiceItemTaxModel;
|
|
};
|