Loading...
digraph {
splines=ortho;
#edgesep=1; nodesep=1;
node [shape=box; fontsize=9; fontname="Arial", width=1.7, height=0.6];
edge [fontname="Arial" fontsize=10]
node_tax_group [label="Tax groups" shape=rect, style="rounded,filled", fillcolor="#fcb738", fontcolor="#000000"]
node_taxes [label="Taxes" shape=rect, style="rounded,filled", fillcolor="#8BC34A", fontcolor="#000000"]
node_product [label="Product" shape=rect, style="rounded,filled", fillcolor="#3F51B5", fontcolor="#FFFFFF"]
node_tax_rules [label="Tax rules" shape=rect, style="rounded,filled", fillcolor="#FFEB3B", fontcolor="#000000"]
node_tax_group_name [label="Name" shape=circle, style="rounded,filled", fillcolor="#fcb738", width=0.5 fontcolor="#000000"]
node_tax_group_active [label="Active" shape=circle, style="rounded,filled", fillcolor="#fcb738", width=0.5 fontcolor="#000000"]
node_tax_group_deleted [label="deleted" shape=circle, style="rounded,filled", fillcolor="#fcb738", width=0.5 fontcolor="#000000"]
node_taxes_group_code [label="Code" shape=circle, style="rounded,filled", fillcolor="#8BC34A", width=0.5 fontcolor="#000000"]
node_taxes_group_name [label="Name" shape=circle, style="rounded,filled", fillcolor="#8BC34A", width=0.5 fontcolor="#000000"]
node_taxes_group_rate [label="Rate" shape=circle, style="rounded,filled", fillcolor="#8BC34A", width=0.5 fontcolor="#000000"]
node_taxes_group_account [label="Account" shape=circle, style="rounded,filled", fillcolor="#8BC34A", width=0.5 fontcolor="#000000"]
node_taxes_group_active [label="Active" shape=circle, style="rounded,filled", fillcolor="#8BC34A", width=0.5 fontcolor="#000000"]
node_taxes_group_delete [label="Delete" shape=circle, style="rounded,filled", fillcolor="#8BC34A", width=0.5 fontcolor="#000000"]
node_tax_rules_tax_group [label="Tax group" shape=circle, style="rounded,filled", fillcolor="#FFEB3B", width=0.5 fontcolor="#000000"]
node_tax_rules_tax [label="Tax" shape=circle, style="rounded,filled", fillcolor="#FFEB3B", width=0.5 fontcolor="#000000"]
node_tax_rules_country [label="Country" shape=circle, style="rounded,filled", fillcolor="#FFEB3B", width=0.5 fontcolor="#000000"]
node_tax_rules_state [label="State" shape=circle, style="rounded,filled", fillcolor="#FFEB3B", width=0.5 fontcolor="#000000"]
node_tax_group -> node_tax_group_name;
node_tax_group -> node_tax_group_active;
node_tax_group -> node_tax_group_deleted;
node_tax_group -> node_product;
node_taxes -> node_taxes_group_code;
node_taxes -> node_taxes_group_name;
node_taxes -> node_taxes_group_rate;
node_taxes -> node_taxes_group_account;
node_taxes -> node_taxes_group_active;
node_taxes -> node_taxes_group_delete;
node_tax_rules -> node_tax_rules_tax_group;
node_tax_rules -> node_tax_rules_tax;
node_tax_rules -> node_tax_rules_country;
node_tax_rules -> node_tax_rules_state;
node_taxes -> node_tax_rules_tax;
node_tax_group -> node_tax_rules_tax_group;
}