This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.conf import settings | |
from django.db import models | |
from django.forms import Textarea | |
from django.urls import reverse | |
from django.utils.functional import cached_property | |
from django.utils.translation import gettext as _, get_language | |
from modelcluster.fields import ParentalKey | |
from modelcluster.models import ClusterableModel | |
from wagtail.admin.panels import FieldPanel, MultiFieldPanel, TabbedInterface, InlinePanel, ObjectList | |
from wagtail.contrib.settings.models import BaseGenericSetting |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"-32768": "خطای ناشناخته رخ داده است", | |
"-32004": "خطا در فراخوانی سرویس درخواست خرید تسهیم آفالین", | |
"-32003": "مبلغ کل با جمع مبالغ تسهیم شده برابر نمی باشد", | |
"-32002": "مبلغ در یک یا چند آیتم داده شده معتبر نمی باشد", | |
"-32001": "لیست شماره شباها خالی است", | |
"-32000": "خطا در فراخوانی سرویس کنترل شبای ذینفعان تسهیم آفالین", | |
"-20000": "برخی از شباها معتبر نمی باشد", | |
"-1653": "شناسه الگوریتم صحیح نمی باشد", | |
"-1652": "داده ی ورودی با الگوریتم مورد نظر مطابقت ندارد", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:io'; | |
import 'dart:async'; | |
import 'package:flutter/material.dart'; | |
class HomePage extends StatefulWidget { | |
@override | |
_HomePageState createState() => _HomePageState(); | |
} | |
class _HomePageState extends State<HomePage> { |