refactor rpa func signature

This commit is contained in:
ctengiz
2024-03-26 11:17:45 +03:00
parent f2939d6c4d
commit 3fb10cf000
2 changed files with 8 additions and 2 deletions

View File

@@ -123,7 +123,7 @@ const upload = function () {
}
const doRpa = function () {
Rpa(Math.trunc(ld.month), Math.trunc(ld.year)).catch(err => console.log(err))
Rpa(ld.companyID, ld.month, ld.year).catch(err => console.log(err))
}
</script>