|
|
@@ -47,6 +47,17 @@ public class AccountController extends BaseController<Account> {
|
|
|
return accountService.selectAccountById(id);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @desc : 总单加明细总数量
|
|
|
+ * @author : 姜永辉
|
|
|
+ * @date : 2024/3/6 10:36
|
|
|
+ */
|
|
|
+ @PostMapping({"/get_account_item_count"})
|
|
|
+ public ResponseResultVO countByCond(@RequestBody AccountItemQuery accountItemQuery) {
|
|
|
+ return accountService.countByCond(accountItemQuery);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* @desc : 查询应收账款明细
|