# -*- coding: utf-8 -*- { 'name': "Split Pendapatan Payment", 'summary': "Split income journal entries per payment method in Point of Sale transactions", 'description': """ This module modifies Point of Sale transactions to split income/pendapatan journal entries per payment method used in the transaction. Instead of creating a single income line for all sales, separate income lines are created for each payment method. """, 'author': "Suherdy Yacob", # Categories can be used to filter modules in modules listing 'category': 'Point of Sale', 'version': '17.0.1.0.0', # any module necessary for this one to work correctly 'depends': ['point_of_sale', 'pos_discount'], # always loaded 'data': [ # 'security/ir.model.access.csv', 'views/pos_session_views.xml', 'views/pos_payment_method_views.xml', ], # only loaded in demonstration mode 'demo': [ # 'demo/demo.xml', ], 'installable': True, 'application': False, 'auto_install': False, 'license': 'LGPL-3', }