Guideline 3.2.1

Guideline 3.2.1 - Business - Other Business Model Issues - Acceptable

 Your app provides loan services but does not meet all the requirements for apps providing these services. Specifically:

 - Your app facilitates loan or credit applications for multiple loan providers but you have not provided documentation of your partnership with these financial institutions to provide these services.

These requirements give App Store users confidence that apps offering financial services are qualified to provide these services and will responsibly manage their data.

 Next Steps

It would be appropriate to take the following steps to resolve this issue:

- If you have partnered with the loan providers and are authorized to distribute this app, reply to this message and provide documentary evidence of your partnership with each loan provider. If you are not partnered with these loan providers, it would be appropriate to secure the necessary authorization from them before resubmitting for review.

 Resources 

- Learn more about requirements for acceptable business models in App Review Guideline 3.2.1.

 Support

 - Reply to this message in your preferred language if you need assistance. If you need additional support, use the Contact Us module.

 

 

原因: 协议里面的名称公司对不上

 

回复内容如下:

 

Dear,

Thank you for your feedback regarding our application. I would like to clarify that all loans offered through ViVi Nhanh are provided by us, AMC ASSET MANAGEMENT SERVICE ONE MEMBER LIMITED LIABILITY COMPANY.

It appears there may have been some confusion due to the inclusion of our Vietnamese local company name, CÔNG TY TNHH MTV DỊCH VỤ QUẢN LÝ TÀI SẢN AMC, in the loan agreements. To address this, we have updated the loan agreements to clearly state AMC ASSET MANAGEMENT SERVICE ONE MEMBER LIMITED LIABILITY COMPANY as the lender.

We appreciate your understanding and hope that you can continue the review process for our application.

Thank you for your assistance.

 

 

//------------备注参考代码------------

<?php

/** @var array $data */

$data['companyName'] = \common\helpers\Util::hasPackageConfig('companyName') ?: 'AMC ASSET MANAGEMENT SERVICE ONE MEMBER LIMITED LIABILITY COMPANY';

?>

<!DOCTYPE html>

<html lang="vi">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>Thỏa thuận vay</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            margin: 0;

            padding: 0;

            ">#f4f4f4;

            color: #333;

            font-size: 16px;

        }

        .container {

            max-width: 90%;

            margin: 20px auto;

            padding: 20px;

           

            border-radius: 8px;

            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

        }

        header {

            ">#f5f5f5;

            padding: 15px;

            text-align: center;

            border-radius: 8px 8px 0 0;

        }

        h2 {

            border-bottom: 2px solid #436CFC;

            padding-bottom: 10px;

        }

        table {

            width: 100%;

            margin: 20px 0;

            border-collapse: collapse;

        }

        th, td {

            padding: 10px;

            text-align: center;

            border: 1px solid #f5f5f5;

            font-size: 0.9em;

        }

        th {

            ">#f5f5f5;

            /*color: white;*/

        }

        p {

            line-height: 1.6;

        }

        .highlight {

            font-weight: bold;

            /*color: #D9534F;*/

            ">#f5f5f5;

            padding: 5px;

            border-radius: 4px;

        }

        footer {

            text-align: center;

            padding: 10px;

            ">#f5f5f5;

            color: white;

            position: relative;

            bottom: 0;

            width: 100%;

            margin-top: 20px;

            border-radius: 0 0 8px 8px;

        }

    </style>

</head>

<body>

<div class="container">

    <header>

        <h1>Thỏa thuận vay</h1>

    </header>

    <p><b>Người vay: <span class="highlight"><?= $data['name'] ?></span></b></p>

    <p><b>Người cho vay: <span class="highlight"><?= $data['companyName'] ?></span></b></p>

    <p><b>Ngày vay: <span class="highlight"><?= $data['loanTime'] ?></span></b></p>

    <h2>Kế hoạch thanh toán</h2>

    <table>

        <tr>

            <th>Kỳ hạn</th>

            <th>Số tiền trả</th>

            <th>Ngày trả</th>

        </tr>

        <?php foreach ($data['repayPlans'] as $repayPlan): ?>

            <tr>

                <td><?= $repayPlan['period'] ?></span></td>

                <td><?= $repayPlan['repayAmount'] ?></span></td>

                <td><?= $repayPlan['repayDay'] ?></span></td>

            </tr>

        <?php endforeach; ?>

    </table>

 

    <table class="tab2">

        <tr>

            <td>Số tiền vay</td>

            <td><span class="highlight"><?= $data['principal'] ?></span></td>

        </tr>

        <tr>

            <td>Kỳ hạn vay</td>

            <td><span class="highlight"><?= $data['term'] ?></span> ngày</td>

        </tr>

        <tr>

            <td>Lãi suất</td>

            <td><span class="highlight"><?= $data['loanRate'] ?></span></td>

        </tr>

        <tr>

            <td>Phí dịch vụ</td>

            <td><span class="highlight"><?= $data['service_fee'] ?></span></td>

        </tr>

        <tr>

            <td>Tên chủ tài khoản</td>

            <td><span class="highlight"><?= $data['name'] ?></span></td>

        </tr>

    </table>

 

    <p>

        <span class="highlight"><?= $data['companyName'] ?></span> và <span class="highlight"><?= $data['name'] ?></span> đã ký một thỏa thuận, trong đó <span class="highlight"><?= $data['companyName'] ?></span> sẽ cung cấp một khoản vay tiền mặt cho <span class="highlight"><?= $data['name'] ?></span> trong <span class="highlight"><?= $data['loanTime'] ?></span> ngày. Lãi suất hàng tháng của khoản vay là 1.5%, tương đương với lãi suất hàng năm là 18%. <span class="highlight"><?= $data['name'] ?></span> cam kết thực hiện một loạt các khoản trả góp đều đặn trong <span class="highlight"><?= $data['period'] ?></span>, và khoản trả góp đầu tiên đáo hạn vào ngày <span class="highlight"><?= $data['firstrRepayDay'] ?></span>.

    </p>

    <p>

        Nếu <span class="highlight"><?= $data['name'] ?></span> không thanh toán đúng hạn, một khoản phí trễ hạn 5% sẽ được thêm vào số tiền còn lại. Nếu không thanh toán khoản vay đúng hạn, <span class="highlight"><?= $data['companyName'] ?></span> có quyền tiến hành hành động pháp lý theo luật và quy định có liên quan.

    </p>

    <p>

        Thỏa thuận này sẽ tuân theo luật pháp Việt Nam và mọi tranh chấp liên quan đến việc thực hiện sẽ được giải quyết thông qua trọng tài hoặc, nếu cần, trước toà án Việt Nam có thẩm quyền.

    </p>

    <p>

        Bằng cách ký kết Thỏa thuận này, <span class="highlight"><?= $data['name'] ?></span> xác nhận rằng họ đã đọc và hiểu tất cả các điều khoản và đồng ý tuân thủ các điều kiện được nêu cụ thể. Chúng tôi trân trọng sự hiểu biết và kiên nhẫn của bạn.

    </p>

</div>

</body>

</html>

 

posted @ 2024-09-30 10:44  super1250  阅读(7)  评论(0编辑  收藏  举报