Skip to content
Snippets Groups Projects
Unverified Commit a86ffbcc authored by winklevos's avatar winklevos Committed by GitHub
Browse files

Fix condition mapping for payee rule creation from payee modal (#414)

parent 3424e0ee
No related branches found
No related tags found
No related merge requests found
......@@ -588,20 +588,29 @@ export default function ManageRules({
}, []);
function onCreateRule() {
let rule = {
stage: null,
conditions: [
{
field: 'payee',
op: 'is',
value: payeeId || null,
type: 'id'
}
],
actions: [
{
op: 'set',
field: 'category',
value: null,
type: 'id'
}
]
};
dispatch(
pushModal('edit-rule', {
rule: {
stage: null,
conditions: [{ op: 'is', field: 'payee', value: null, type: 'id' }],
actions: [
{
op: 'set',
field: 'category',
value: null,
type: 'id'
}
]
},
rule,
onSave: async newRule => {
let newRules = await loadRules();
......
......@@ -90,19 +90,24 @@ function ManagePayeesWithData({
}
function onCreateRule(id) {
let payee = payees.find(p => p.id === id);
let rule = {
id: null,
stage: null,
conditions: [
{
field: 'description',
field: 'payee',
op: 'is',
value: payee.id,
value: id,
type: 'id'
}
],
actions: []
actions: [
{
op: 'set',
field: 'category',
value: null,
type: 'id'
}
]
};
pushModal('edit-rule', { rule });
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment