Skip to content

Commit 84b2a8e

Browse files
authored
Fix: Summary Cash Flow Statement (PanJiaChen#2931)
1 parent 2f17030 commit 84b2a8e

File tree

2 files changed

+3
-3
lines changed
  • src
    • api/ADempiere/form/VPOS
    • components/ADempiere/Form/VPOS2/Options/cashManagement/cashClosing

2 files changed

+3
-3
lines changed

src/api/ADempiere/form/VPOS/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,7 @@ export function processCashClosing({
13471347
/**
13481348
* List Cash Summary
13491349
*/
1350-
export function listCashSummaryMovements({
1350+
export function listCashMovements({
13511351
posId,
13521352
isOnlyProcessed,
13531353
isOnlyRefund
@@ -1366,7 +1366,7 @@ export function listCashSummaryMovements({
13661366
/**
13671367
* List all cash movements
13681368
*/
1369-
export function listCashMovements({
1369+
export function listCashSummaryMovements({
13701370
posId,
13711371
isOnlyProcessed,
13721372
isOnlyRefund

src/components/ADempiere/Form/VPOS2/Options/cashManagement/cashClosing/panel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ along with this program. If not, see <https:www.gnu.org/licenses/>.
5454
:label="$t('form.pos.collect.seller')"
5555
/>
5656
<el-table-column
57-
prop="payment_method.name"
57+
:prop="isDetails ? 'payment_method.name' : 'payment_method_name'"
5858
width="150"
5959
:label="$t('form.pos.collect.paymentMethod')"
6060
/>

0 commit comments

Comments
 (0)