You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

562 lines
32 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="report_aged_partner_balance_qweb">
  4. <t t-call="web.html_container">
  5. <t t-foreach="docs" t-as="o">
  6. <t t-call="account_financial_report.internal_layout">
  7. <t t-call="account_financial_report.report_aged_partner_balance_base"/>
  8. </t>
  9. </t>
  10. </t>
  11. </template>
  12. <template id="report_aged_partner_balance_base">
  13. <!-- Saved flag fields into variables, used to define columns display -->
  14. <t t-set="show_move_line_details" t-value="o.show_move_line_details"/>
  15. <!-- Defines global variables used by internal layout -->
  16. <t t-set="title">Aged Partner Balance</t>
  17. <t t-set="company_name" t-value="o.company_id.name"/>
  18. <div class="page">
  19. <!-- Display filters -->
  20. <t t-call="account_financial_report.report_aged_partner_balance_filters"/>
  21. <t t-foreach="o.account_ids" t-as="account">
  22. <div class="page_break">
  23. <!-- Display account header -->
  24. <div class="act_as_table list_table" style="margin-top: 10px;"/>
  25. <div class="act_as_caption account_title"
  26. style="width: 100%;">
  27. <span t-field="account.code"/>
  28. -
  29. <span t-field="account.name"/>
  30. </div>
  31. <!-- Display account lines -->
  32. <t t-if="not show_move_line_details">
  33. <div class="act_as_table data_table"
  34. style="width: 100%;">
  35. <!-- Display account header -->
  36. <t t-call="account_financial_report.report_aged_partner_balance_lines_header"/>
  37. <t t-foreach="account.partner_ids" t-as="partner">
  38. <!-- Display one line per partner -->
  39. <t t-call="account_financial_report.report_aged_partner_balance_lines"/>
  40. </t>
  41. </div>
  42. <!-- Display account footer -->
  43. <t t-call="account_financial_report.report_aged_partner_balance_account_ending_cumul"/>
  44. </t>
  45. <!-- Display account move lines -->
  46. <t t-if="show_move_line_details">
  47. <!-- Display account partners -->
  48. <t t-foreach="account.partner_ids" t-as="partner">
  49. <div class="page_break">
  50. <!-- Display partner header -->
  51. <div class="act_as_caption account_title">
  52. <span t-field="partner.name"/>
  53. </div>
  54. <!-- Display partner move lines -->
  55. <t t-call="account_financial_report.report_aged_partner_balance_move_lines"/>
  56. <!-- Display partner footer -->
  57. <t t-call="account_financial_report.report_aged_partner_balance_partner_ending_cumul">
  58. <t t-set="partner_cumul_line" t-value="partner.line_ids"/>
  59. </t>
  60. </div>
  61. </t>
  62. <!-- Display account footer -->
  63. <t t-call="account_financial_report.report_aged_partner_balance_account_ending_cumul"/>
  64. </t>
  65. </div>
  66. </t>
  67. </div>
  68. </template>
  69. <template id="report_aged_partner_balance_filters">
  70. <div class="act_as_table data_table" style="width: 100%;">
  71. <div class="act_as_row labels">
  72. <div class="act_as_cell">Date at filter</div>
  73. <div class="act_as_cell">Target moves filter</div>
  74. </div>
  75. <div class="act_as_row">
  76. <div class="act_as_cell">
  77. <span t-field="o.date_at"/>
  78. </div>
  79. <div class="act_as_cell">
  80. <t t-if="o.only_posted_moves">All posted entries</t>
  81. <t t-if="not o.only_posted_moves">All entries</t>
  82. </div>
  83. </div>
  84. </div>
  85. </template>
  86. <template id="report_aged_partner_balance_lines_header">
  87. <!-- Display table headers for lines -->
  88. <div class="act_as_thead">
  89. <div class="act_as_row labels">
  90. <!--## partner-->
  91. <div class="act_as_cell" style="width: 32.52%;">Partner</div>
  92. <!--## amount_residual-->
  93. <div class="act_as_cell" style="width: 9.64%;">Residual</div>
  94. <!--## current-->
  95. <div class="act_as_cell" style="width: 9.64%;">Not due</div>
  96. <!--## age_30_days-->
  97. <div class="act_as_cell" style="width: 9.64%;">1 - 30 d.</div>
  98. <!--## age_60_days-->
  99. <div class="act_as_cell" style="width: 9.64%;">31 - 60 d.</div>
  100. <!--## age_90_days-->
  101. <div class="act_as_cell" style="width: 9.64%;">61 - 90 d.</div>
  102. <!--## age_120_days-->
  103. <div class="act_as_cell" style="width: 9.64%;">91 - 120 d.</div>
  104. <!--## older-->
  105. <div class="act_as_cell" style="width: 9.64%;"> > 120 d.</div>
  106. </div>
  107. </div>
  108. </template>
  109. <template id="report_aged_partner_balance_lines">
  110. <!-- Display each lines -->
  111. <t t-foreach="partner.line_ids" t-as="line">
  112. <!-- # lines -->
  113. <div class="act_as_row lines">
  114. <!--## partner-->
  115. <div class="act_as_cell left">
  116. <span t-field="line.partner"/>
  117. </div>
  118. <!--## amount_residual-->
  119. <div class="act_as_cell amount">
  120. <span t-field="line.amount_residual" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  121. </div>
  122. <!--## current-->
  123. <div class="act_as_cell amount">
  124. <span t-field="line.current" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  125. </div>
  126. <!--## age_30_days-->
  127. <div class="act_as_cell amount">
  128. <span t-field="line.age_30_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  129. </div>
  130. <!--## age_60_days-->
  131. <div class="act_as_cell amount">
  132. <span t-field="line.age_60_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  133. </div>
  134. <!--## age_90_days-->
  135. <div class="act_as_cell amount">
  136. <span t-field="line.age_90_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  137. </div>
  138. <!--## age_120_days-->
  139. <div class="act_as_cell amount">
  140. <span t-field="line.age_120_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  141. </div>
  142. <!--## older-->
  143. <div class="act_as_cell amount">
  144. <span t-field="line.older" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  145. </div>
  146. </div>
  147. </t>
  148. </template>
  149. <template id="report_aged_partner_balance_move_lines">
  150. <div class="act_as_table data_table" style="width: 100%;">
  151. <!-- Display table headers for move lines -->
  152. <div class="act_as_thead">
  153. <div class="act_as_row labels">
  154. <!--## date-->
  155. <div class="act_as_cell first_column" style="width: 6.00%;">
  156. Date</div>
  157. <!--## move-->
  158. <div class="act_as_cell" style="width: 7.00%;">Entry</div>
  159. <!--## journal-->
  160. <div class="act_as_cell" style="width: 5.00%;">Journal</div>
  161. <!--## account code-->
  162. <div class="act_as_cell" style="width: 6.00%;">Account</div>
  163. <!--## partner-->
  164. <div class="act_as_cell" style="width: 10.50%;">Partner
  165. </div>
  166. <!--## ref - label-->
  167. <div class="act_as_cell" style="width: 18.00%;">Ref -
  168. Label</div>
  169. <!--## date_due-->
  170. <div class="act_as_cell" style="width: 6.00%;">Due
  171. date</div>
  172. <!--## amount_residual-->
  173. <div class="act_as_cell" style="width: 6.00%;">Residual
  174. </div>
  175. <!--## current-->
  176. <div class="act_as_cell" style="width: 6.00%;">Current</div>
  177. <!--## age_30_days-->
  178. <div class="act_as_cell" style="width: 6.00%;">Age ≤ 30
  179. d.</div>
  180. <!--## age_60_days-->
  181. <div class="act_as_cell" style="width: 6.00%;">Age ≤ 60
  182. d.</div>
  183. <!--## age_90_days-->
  184. <div class="act_as_cell" style="width: 6.00%;">Age ≤ 90
  185. d.</div>
  186. <!--## age_120_days-->
  187. <div class="act_as_cell" style="width: 6.00%;">Age ≤ 120
  188. d.</div>
  189. <!--## older-->
  190. <div class="act_as_cell" style="width: 6.00%;">Older</div>
  191. </div>
  192. </div>
  193. <!-- Display each move lines -->
  194. <t t-foreach="partner.move_line_ids" t-as="line">
  195. <!-- # lines or centralized lines -->
  196. <div class="act_as_row lines">
  197. <!--## date-->
  198. <div class="act_as_cell left">
  199. <span>
  200. <a t-att-data-active-id="line.move_line_id.id"
  201. t-att-data-res-model="'account.move.line'"
  202. class="o_account_financial_reports_web_action"
  203. style="color: black;">
  204. <!--## We don't use t-field because it throws an error on click -->
  205. <t t-esc="line.date" t-options="{'widget': 'date'}"/></a>
  206. </span>
  207. </div>
  208. <!--## move-->
  209. <div class="act_as_cell left">
  210. <span>
  211. <a t-att-data-active-id="line.move_line_id.move_id.id"
  212. t-att-data-res-model="'account.move'"
  213. class="o_account_financial_reports_web_action"
  214. style="color: black;">
  215. <t t-raw="line.entry"/></a>
  216. </span>
  217. </div>
  218. <!--## journal-->
  219. <div class="act_as_cell left">
  220. <span>
  221. <a t-att-data-active-id="line.move_line_id.move_id.journal_id.id"
  222. t-att-data-res-model="'account.journal'"
  223. class="o_account_financial_reports_web_action"
  224. style="color: black;">
  225. <t t-raw="line.journal"/></a>
  226. </span>
  227. </div>
  228. <!--## account code-->
  229. <div class="act_as_cell left">
  230. <span>
  231. <a t-att-data-active-id="line.move_line_id.account_id.id"
  232. t-att-data-res-model="'account.account'"
  233. class="o_account_financial_reports_web_action"
  234. style="color: black;">
  235. <t t-raw="line.account"/></a>
  236. </span>
  237. </div>
  238. <!--## partner-->
  239. <div class="act_as_cell left">
  240. <span>
  241. <a t-att-data-active-id="line.move_line_id.partner_id.id"
  242. t-att-data-res-model="'res.partner'"
  243. class="o_account_financial_reports_web_action"
  244. style="color: black;">
  245. <t t-raw="line.partner"/></a>
  246. </span>
  247. </div>
  248. <!--## ref - label-->
  249. <div class="act_as_cell left">
  250. <span>
  251. <a t-att-data-active-id="line.move_line_id.id"
  252. t-att-data-res-model="'account.move.line'"
  253. class="o_account_financial_reports_web_action"
  254. style="color: black;">
  255. <t t-raw="line.label"/></a>
  256. </span>
  257. </div>
  258. <!--## date_due-->
  259. <div class="act_as_cell left">
  260. <span>
  261. <a t-att-data-active-id="line.move_line_id.id"
  262. t-att-data-res-model="'account.move.line'"
  263. class="o_account_financial_reports_web_action"
  264. style="color: black;">
  265. <!--## We don't use t-field because it throws an error on click -->
  266. <t t-esc="line.date_due" t-options="{'widget': 'date'}"/></a>
  267. </span>
  268. </div>
  269. <!--## amount_residual-->
  270. <div class="act_as_cell amount">
  271. <span>
  272. <a t-att-data-domain="[('id', 'in', list(filter(lambda x: x != 'False', [str(line.move_line_id.id), str(line.move_line_id.matched_debit_ids.debit_move_id.id), str(line.move_line_id.matched_credit_ids.credit_move_id.id)])))]"
  273. t-att-data-res-model="'account.move.line'"
  274. class="o_account_financial_reports_web_action_multi"
  275. style="color: black;">
  276. <t t-raw="line.amount_residual" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  277. </span>
  278. </div>
  279. <!--## current-->
  280. <div class="act_as_cell amount">
  281. <t t-if="line.current != 0">
  282. <span>
  283. <a t-att-data-domain="[('id', 'in', list(filter(lambda x: x != 'False', [str(line.move_line_id.id), str(line.move_line_id.matched_debit_ids.debit_move_id.id), str(line.move_line_id.matched_credit_ids.credit_move_id.id)])))]"
  284. t-att-data-res-model="'account.move.line'"
  285. class="o_account_financial_reports_web_action_multi"
  286. style="color: black;">
  287. <t t-raw="line.current" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  288. </span>
  289. </t>
  290. <t t-if="line.current == 0">
  291. <span t-field="line.current" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  292. </t>
  293. </div>
  294. <!--## age_30_days-->
  295. <div class="act_as_cell amount">
  296. <t t-if="line.age_30_days != 0">
  297. <span>
  298. <a t-att-data-domain="[('id', 'in', list(filter(lambda x: x != 'False', [str(line.move_line_id.id), str(line.move_line_id.matched_debit_ids.debit_move_id.id), str(line.move_line_id.matched_credit_ids.credit_move_id.id)])))]"
  299. t-att-data-res-model="'account.move.line'"
  300. class="o_account_financial_reports_web_action_multi"
  301. style="color: black;">
  302. <t t-raw="line.age_30_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  303. </span>
  304. </t>
  305. <t t-if="line.age_30_days == 0">
  306. <span t-field="line.age_30_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  307. </t>
  308. </div>
  309. <!--## age_60_days-->
  310. <div class="act_as_cell amount">
  311. <t t-if="line.age_60_days != 0">
  312. <span>
  313. <a t-att-data-domain="[('id', 'in', list(filter(lambda x: x != 'False', [str(line.move_line_id.id), str(line.move_line_id.matched_debit_ids.debit_move_id.id), str(line.move_line_id.matched_credit_ids.credit_move_id.id)])))]"
  314. t-att-data-res-model="'account.move.line'"
  315. class="o_account_financial_reports_web_action_multi"
  316. style="color: black;">
  317. <t t-raw="line.age_60_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  318. </span>
  319. </t>
  320. <t t-if="line.age_60_days == 0">
  321. <span t-field="line.age_60_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  322. </t>
  323. </div>
  324. <!--## age_90_days-->
  325. <div class="act_as_cell amount">
  326. <t t-if="line.age_90_days != 0">
  327. <span>
  328. <a t-att-data-domain="[('id', 'in', list(filter(lambda x: x != 'False', [str(line.move_line_id.id), str(line.move_line_id.matched_debit_ids.debit_move_id.id), str(line.move_line_id.matched_credit_ids.credit_move_id.id)])))]"
  329. t-att-data-res-model="'account.move.line'"
  330. class="o_account_financial_reports_web_action_multi"
  331. style="color: black;">
  332. <t t-raw="line.age_90_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  333. </span>
  334. </t>
  335. <t t-if="line.age_90_days == 0">
  336. <span t-field="line.age_90_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  337. </t>
  338. </div>
  339. <!--## age_120_days-->
  340. <div class="act_as_cell amount">
  341. <t t-if="line.age_120_days != 0">
  342. <span>
  343. <a t-att-data-domain="[('id', 'in', list(filter(lambda x: x != 'False', [str(line.move_line_id.id), str(line.move_line_id.matched_debit_ids.debit_move_id.id), str(line.move_line_id.matched_credit_ids.credit_move_id.id)])))]"
  344. t-att-data-res-model="'account.move.line'"
  345. class="o_account_financial_reports_web_action_multi"
  346. style="color: black;">
  347. <t t-raw="line.age_120_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  348. </span>
  349. </t>
  350. <t t-if="line.age_120_days == 0">
  351. <span t-field="line.age_120_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  352. </t>
  353. </div>
  354. <!--## older-->
  355. <div class="act_as_cell amount">
  356. <t t-if="line.older != 0">
  357. <span>
  358. <a t-att-data-domain="[('id', 'in', list(filter(lambda x: x != 'False', [str(line.move_line_id.id), str(line.move_line_id.matched_debit_ids.debit_move_id.id), str(line.move_line_id.matched_credit_ids.credit_move_id.id)])))]"
  359. t-att-data-res-model="'account.move.line'"
  360. class="o_account_financial_reports_web_action_multi"
  361. style="color: black;">
  362. <t t-raw="line.older" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  363. </span>
  364. </t>
  365. <t t-if="line.older == 0">
  366. <span t-field="line.older" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  367. </t>
  368. </div>
  369. </div>
  370. </t>
  371. </div>
  372. </template>
  373. <template id="report_aged_partner_balance_partner_ending_cumul">
  374. <!-- Display ending balance line for partner -->
  375. <div class="act_as_table list_table" style="width: 100%;">
  376. <div class="act_as_row lines" style="font-weight: bold;">
  377. <!--## date-->
  378. <div class="act_as_cell right" style="width: 52.00%;">Partner
  379. cumul aged balance</div>
  380. <!--## date_due-->
  381. <div class="act_as_cell" style="width: 6.00%;"/>
  382. <!--## amount_residual-->
  383. <div class="act_as_cell amount" style="width: 6.00%;">
  384. <span t-field="partner_cumul_line.amount_residual" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  385. </div>
  386. <!--## current-->
  387. <div class="act_as_cell amount" style="width: 6.00%;">
  388. <span t-field="partner_cumul_line.current" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  389. </div>
  390. <!--## age_30_days-->
  391. <div class="act_as_cell amount" style="width: 6.00%;">
  392. <span t-field="partner_cumul_line.age_30_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  393. </div>
  394. <!--## age_60_days-->
  395. <div class="act_as_cell amount" style="width: 6.00%;">
  396. <span t-field="partner_cumul_line.age_60_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  397. </div>
  398. <!--## age_90_days-->
  399. <div class="act_as_cell amount" style="width: 6.00%;">
  400. <span t-field="partner_cumul_line.age_90_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  401. </div>
  402. <!--## age_120_days-->
  403. <div class="act_as_cell amount" style="width: 6.00%;">
  404. <span t-field="partner_cumul_line.age_120_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  405. </div>
  406. <!--## older-->
  407. <div class="act_as_cell amount" style="width: 6.00%;">
  408. <span t-field="partner_cumul_line.older" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  409. </div>
  410. </div>
  411. </div>
  412. </template>
  413. <template id="report_aged_partner_balance_account_ending_cumul">
  414. <!-- Display ending balance line for account -->
  415. <div class="act_as_table list_table" style="width: 100%;">
  416. <div class="act_as_row lines" style="font-weight: bold;">
  417. <t t-if="not show_move_line_details">
  418. <!--## total-->
  419. <div class="act_as_cell right" style="width: 32.52%;">Total</div>
  420. <!--## amount_residual-->
  421. <div class="act_as_cell amount" style="width: 9.64%;">
  422. <span t-field="account.cumul_amount_residual" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  423. </div>
  424. <!--## current-->
  425. <div class="act_as_cell amount" style="width: 9.64%;">
  426. <span t-field="account.cumul_current" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  427. </div>
  428. <!--## age_30_days-->
  429. <div class="act_as_cell amount" style="width: 9.64%;">
  430. <span t-field="account.cumul_age_30_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  431. </div>
  432. <!--## age_60_days-->
  433. <div class="act_as_cell amount" style="width: 9.64%;">
  434. <span t-field="account.cumul_age_60_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  435. </div>
  436. <!--## age_90_days-->
  437. <div class="act_as_cell amount" style="width: 9.64%;">
  438. <span t-field="account.cumul_age_90_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  439. </div>
  440. <!--## age_120_days-->
  441. <div class="act_as_cell amount" style="width: 9.64%;">
  442. <span t-field="account.cumul_age_120_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  443. </div>
  444. <!--## older-->
  445. <div class="act_as_cell amount" style="width: 9.64%;">
  446. <span t-field="account.cumul_older" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  447. </div>
  448. </t>
  449. <t t-if="show_move_line_details">
  450. <!--## total-->
  451. <div class="act_as_cell right" style="width: 52.00%;">Total</div>
  452. <!--## date_due-->
  453. <div class="act_as_cell" style="width: 6.00%;"/>
  454. <!--## amount_residual-->
  455. <div class="act_as_cell amount" style="width: 6.00%">
  456. <span t-field="account.cumul_amount_residual" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  457. </div>
  458. <!--## current-->
  459. <div class="act_as_cell amount" style="width: 6.00%">
  460. <span t-field="account.cumul_current" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  461. </div>
  462. <!--## age_30_days-->
  463. <div class="act_as_cell amount" style="width: 6.00%">
  464. <span t-field="account.cumul_age_30_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  465. </div>
  466. <!--## age_60_days-->
  467. <div class="act_as_cell amount" style="width: 6.00%">
  468. <span t-field="account.cumul_age_60_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  469. </div>
  470. <!--## age_90_days-->
  471. <div class="act_as_cell amount" style="width: 6.00%">
  472. <span t-field="account.cumul_age_90_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  473. </div>
  474. <!--## age_120_days-->
  475. <div class="act_as_cell amount" style="width: 6.00%">
  476. <span t-field="account.cumul_age_120_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  477. </div>
  478. <!--## older-->
  479. <div class="act_as_cell amount" style="width: 6.00%">
  480. <span t-field="account.cumul_older" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  481. </div>
  482. </t>
  483. </div>
  484. <div class="act_as_row" style="font-weight: bold; font-style: italic;">
  485. <t t-if="not show_move_line_details">
  486. <!--## total-->
  487. <div class="act_as_cell right" style="width: 32.52%;">
  488. Percents</div>
  489. <!--## amount_residual-->
  490. <div class="act_as_cell amount" style="width: 9.64%;"/>
  491. <!--## current-->
  492. <div class="act_as_cell amount" style="width: 9.64%;"><span t-field="account.percent_current"/>%
  493. </div>
  494. <!--## age_30_days-->
  495. <div class="act_as_cell amount" style="width: 9.64%;"><span t-field="account.percent_age_30_days"/>%
  496. </div>
  497. <!--## age_60_days-->
  498. <div class="act_as_cell amount" style="width: 9.64%;"><span t-field="account.percent_age_60_days"/>%
  499. </div>
  500. <!--## age_90_days-->
  501. <div class="act_as_cell amount" style="width: 9.64%;"><span t-field="account.percent_age_90_days"/>%
  502. </div>
  503. <!--## age_120_days-->
  504. <div class="act_as_cell amount" style="width: 9.64%;"><span t-field="account.percent_age_120_days"/>
  505. %
  506. </div>
  507. <!--## older-->
  508. <div class="act_as_cell amount" style="width: 9.64%;"><span t-field="account.percent_older"/>%
  509. </div>
  510. </t>
  511. <t t-if="show_move_line_details">
  512. <!--## total-->
  513. <div class="act_as_cell right" style="width: 52.00%;">
  514. Percents</div>
  515. <!--## date_due-->
  516. <div class="act_as_cell" style="width: 6.00%;"/>
  517. <!--## amount_residual-->
  518. <div class="act_as_cell amount" style="width: 6.00%"/>
  519. <!--## current-->
  520. <div class="act_as_cell amount" style="width: 6.00%"><span t-field="account.percent_current"/>%
  521. </div>
  522. <!--## age_30_days-->
  523. <div class="act_as_cell amount" style="width: 6.00%"><span t-field="account.percent_age_30_days"/>%
  524. </div>
  525. <!--## age_60_days-->
  526. <div class="act_as_cell amount" style="width: 6.00%"><span t-field="account.percent_age_60_days"/>%
  527. </div>
  528. <!--## age_90_days-->
  529. <div class="act_as_cell amount" style="width: 6.00%"><span t-field="account.percent_age_90_days"/>%
  530. </div>
  531. <!--## age_120_days-->
  532. <div class="act_as_cell amount" style="width: 6.00%"><span t-field="account.percent_age_120_days"/>%
  533. </div>
  534. <!--## older-->
  535. <div class="act_as_cell amount" style="width: 6.00%"><span t-field="account.percent_older"/>%
  536. </div>
  537. </t>
  538. </div>
  539. </div>
  540. </template>
  541. </odoo>