Fix:Connect preferred sell, cost and inventory account with item form.

This commit is contained in:
elforjani3
2020-11-16 18:21:58 +02:00
parent cfc84f9ddb
commit c571236c75
3 changed files with 40 additions and 10 deletions

View File

@@ -105,12 +105,26 @@ export default {
],
payment_receives: [
{
key: 'next_number',
type: 'number',
key: "next_number",
type: "number",
},
{
key: 'number_prefix',
type: 'string',
key: "number_prefix",
type: "string",
},
]
],
items: [
{
key: "preferred_sell_account",
type: "number",
},
{
key: "preferred_cost_account",
type: "number",
},
{
key: "preferred_inventory_account",
type: "number",
},
],
};