feat: Initialize App
This commit is contained in:
commit
e456aa05df
|
|
@ -0,0 +1,7 @@
|
||||||
|
.DS_Store
|
||||||
|
*.pyc
|
||||||
|
*.egg-info
|
||||||
|
*.swp
|
||||||
|
tags
|
||||||
|
node_modules
|
||||||
|
__pycache__
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
## Taxes Az
|
||||||
|
|
||||||
|
Azerbaijan Taxes
|
||||||
|
|
||||||
|
#### License
|
||||||
|
|
||||||
|
unlicense
|
||||||
|
|
@ -0,0 +1,24 @@
|
||||||
|
This is free and unencumbered software released into the public domain.
|
||||||
|
|
||||||
|
Anyone is free to copy, modify, publish, use, compile, sell, or
|
||||||
|
distribute this software, either in source code form or as a compiled
|
||||||
|
binary, for any purpose, commercial or non-commercial, and by any
|
||||||
|
means.
|
||||||
|
|
||||||
|
In jurisdictions that recognize copyright laws, the author or authors
|
||||||
|
of this software dedicate any and all copyright interest in the
|
||||||
|
software to the public domain. We make this dedication for the benefit
|
||||||
|
of the public at large and to the detriment of our heirs and
|
||||||
|
successors. We intend this dedication to be an overt act of
|
||||||
|
relinquishment in perpetuity of all present and future rights to this
|
||||||
|
software under copyright law.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||||
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||||
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
For more information, please refer to <https://unlicense.org>
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
[project]
|
||||||
|
name = "taxes_az"
|
||||||
|
authors = [
|
||||||
|
{ name = "Jey Soft", email = "info@jeysoft.az"}
|
||||||
|
]
|
||||||
|
description = "Azerbaijan Taxes"
|
||||||
|
requires-python = ">=3.10"
|
||||||
|
readme = "README.md"
|
||||||
|
dynamic = ["version"]
|
||||||
|
dependencies = [
|
||||||
|
# "frappe~=15.0.0" # Installed and managed by bench.
|
||||||
|
]
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["flit_core >=3.4,<4"]
|
||||||
|
build-backend = "flit_core.buildapi"
|
||||||
|
|
||||||
|
# These dependencies are only installed when developer mode is enabled
|
||||||
|
[tool.bench.dev-dependencies]
|
||||||
|
# package_name = "~=1.1.0"
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
__version__ = "0.0.1"
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
import frappe
|
||||||
|
from path.to.your.module.doctype import OriginalDoctype
|
||||||
|
|
||||||
|
class CustomDoctypeClass(OriginalDoctype):
|
||||||
|
def validate_name(self, name=None):
|
||||||
|
# Переопределяем метод и оставляем его пустым
|
||||||
|
pass
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"attached_to_doctype": "Print Format",
|
||||||
|
"attached_to_field": "print_designer_preview_img",
|
||||||
|
"attached_to_name": "sales_test",
|
||||||
|
"content_hash": "74327780e4d07fb0734c7590b4aa6cff",
|
||||||
|
"creation": "2024-09-10 20:11:16.951000",
|
||||||
|
"docstatus": 0,
|
||||||
|
"doctype": "File",
|
||||||
|
"file_name": "print_designer-sales_test-preview.jpg",
|
||||||
|
"file_size": 28021,
|
||||||
|
"file_type": "JPG",
|
||||||
|
"file_url": "/private/files/print_designer-sales_test-preview.jpg",
|
||||||
|
"folder": "Home",
|
||||||
|
"idx": 0,
|
||||||
|
"is_attachments_folder": 0,
|
||||||
|
"is_folder": 0,
|
||||||
|
"is_home_folder": 0,
|
||||||
|
"is_private": 1,
|
||||||
|
"modified": "2024-09-10 20:11:16.951000",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"name": "6424acb36d",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"uploaded_to_dropbox": 0,
|
||||||
|
"uploaded_to_google_drive": 0
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,233 @@
|
||||||
|
app_name = "taxes_az"
|
||||||
|
app_title = "Taxes Az"
|
||||||
|
app_publisher = "Jey Soft"
|
||||||
|
app_description = "Azerbaijan Taxes"
|
||||||
|
app_email = "info@jeysoft.az"
|
||||||
|
app_license = "unlicense"
|
||||||
|
# required_apps = []
|
||||||
|
|
||||||
|
override_doctype_class = {
|
||||||
|
"OriginalDoctype": "taxes_az.taxes_az.custom_doctype.CustomDoctypeClass"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Includes in <head>
|
||||||
|
# ------------------
|
||||||
|
|
||||||
|
# include js, css files in header of desk.html
|
||||||
|
# app_include_css = "/assets/taxes_az/css/taxes_az.css"
|
||||||
|
# app_include_js = "/assets/taxes_az/js/taxes_az.js"
|
||||||
|
|
||||||
|
# include js, css files in header of web template
|
||||||
|
# web_include_css = "/assets/taxes_az/css/taxes_az.css"
|
||||||
|
# web_include_js = "/assets/taxes_az/js/taxes_az.js"
|
||||||
|
|
||||||
|
# include custom scss in every website theme (without file extension ".scss")
|
||||||
|
# website_theme_scss = "taxes_az/public/scss/website"
|
||||||
|
|
||||||
|
# include js, css files in header of web form
|
||||||
|
# webform_include_js = {"doctype": "public/js/doctype.js"}
|
||||||
|
# webform_include_css = {"doctype": "public/css/doctype.css"}
|
||||||
|
|
||||||
|
# include js in page
|
||||||
|
# page_js = {"page" : "public/js/file.js"}
|
||||||
|
|
||||||
|
# include js in doctype views
|
||||||
|
# doctype_js = {"doctype" : "public/js/doctype.js"}
|
||||||
|
# doctype_list_js = {"doctype" : "public/js/doctype_list.js"}
|
||||||
|
# doctype_tree_js = {"doctype" : "public/js/doctype_tree.js"}
|
||||||
|
# doctype_calendar_js = {"doctype" : "public/js/doctype_calendar.js"}
|
||||||
|
|
||||||
|
# Svg Icons
|
||||||
|
# ------------------
|
||||||
|
# include app icons in desk
|
||||||
|
# app_include_icons = "taxes_az/public/icons.svg"
|
||||||
|
|
||||||
|
# Home Pages
|
||||||
|
# ----------
|
||||||
|
|
||||||
|
# application home page (will override Website Settings)
|
||||||
|
# home_page = "login"
|
||||||
|
|
||||||
|
# website user home page (by Role)
|
||||||
|
# role_home_page = {
|
||||||
|
# "Role": "home_page"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# Generators
|
||||||
|
# ----------
|
||||||
|
|
||||||
|
# automatically create page for each record of this doctype
|
||||||
|
# website_generators = ["Web Page"]
|
||||||
|
|
||||||
|
# Jinja
|
||||||
|
# ----------
|
||||||
|
|
||||||
|
# add methods and filters to jinja environment
|
||||||
|
# jinja = {
|
||||||
|
# "methods": "taxes_az.utils.jinja_methods",
|
||||||
|
# "filters": "taxes_az.utils.jinja_filters"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# Installation
|
||||||
|
# ------------
|
||||||
|
|
||||||
|
# before_install = "taxes_az.install.before_install"
|
||||||
|
# after_install = "taxes_az.install.after_install"
|
||||||
|
|
||||||
|
# Uninstallation
|
||||||
|
# ------------
|
||||||
|
|
||||||
|
# before_uninstall = "taxes_az.uninstall.before_uninstall"
|
||||||
|
# after_uninstall = "taxes_az.uninstall.after_uninstall"
|
||||||
|
|
||||||
|
# Integration Setup
|
||||||
|
# ------------------
|
||||||
|
# To set up dependencies/integrations with other apps
|
||||||
|
# Name of the app being installed is passed as an argument
|
||||||
|
|
||||||
|
# before_app_install = "taxes_az.utils.before_app_install"
|
||||||
|
# after_app_install = "taxes_az.utils.after_app_install"
|
||||||
|
|
||||||
|
# Integration Cleanup
|
||||||
|
# -------------------
|
||||||
|
# To clean up dependencies/integrations with other apps
|
||||||
|
# Name of the app being uninstalled is passed as an argument
|
||||||
|
|
||||||
|
# before_app_uninstall = "taxes_az.utils.before_app_uninstall"
|
||||||
|
# after_app_uninstall = "taxes_az.utils.after_app_uninstall"
|
||||||
|
|
||||||
|
# Desk Notifications
|
||||||
|
# ------------------
|
||||||
|
# See frappe.core.notifications.get_notification_config
|
||||||
|
|
||||||
|
# notification_config = "taxes_az.notifications.get_notification_config"
|
||||||
|
|
||||||
|
# Permissions
|
||||||
|
# -----------
|
||||||
|
# Permissions evaluated in scripted ways
|
||||||
|
|
||||||
|
# permission_query_conditions = {
|
||||||
|
# "Event": "frappe.desk.doctype.event.event.get_permission_query_conditions",
|
||||||
|
# }
|
||||||
|
#
|
||||||
|
# has_permission = {
|
||||||
|
# "Event": "frappe.desk.doctype.event.event.has_permission",
|
||||||
|
# }
|
||||||
|
|
||||||
|
# DocType Class
|
||||||
|
# ---------------
|
||||||
|
# Override standard doctype classes
|
||||||
|
|
||||||
|
# override_doctype_class = {
|
||||||
|
# "ToDo": "custom_app.overrides.CustomToDo"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# Document Events
|
||||||
|
# ---------------
|
||||||
|
# Hook on document methods and events
|
||||||
|
|
||||||
|
# doc_events = {
|
||||||
|
# "*": {
|
||||||
|
# "on_update": "method",
|
||||||
|
# "on_cancel": "method",
|
||||||
|
# "on_trash": "method"
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
|
||||||
|
# Scheduled Tasks
|
||||||
|
# ---------------
|
||||||
|
|
||||||
|
# scheduler_events = {
|
||||||
|
# "all": [
|
||||||
|
# "taxes_az.tasks.all"
|
||||||
|
# ],
|
||||||
|
# "daily": [
|
||||||
|
# "taxes_az.tasks.daily"
|
||||||
|
# ],
|
||||||
|
# "hourly": [
|
||||||
|
# "taxes_az.tasks.hourly"
|
||||||
|
# ],
|
||||||
|
# "weekly": [
|
||||||
|
# "taxes_az.tasks.weekly"
|
||||||
|
# ],
|
||||||
|
# "monthly": [
|
||||||
|
# "taxes_az.tasks.monthly"
|
||||||
|
# ],
|
||||||
|
# }
|
||||||
|
|
||||||
|
# Testing
|
||||||
|
# -------
|
||||||
|
|
||||||
|
# before_tests = "taxes_az.install.before_tests"
|
||||||
|
|
||||||
|
# Overriding Methods
|
||||||
|
# ------------------------------
|
||||||
|
#
|
||||||
|
# override_whitelisted_methods = {
|
||||||
|
# "frappe.desk.doctype.event.event.get_events": "taxes_az.event.get_events"
|
||||||
|
# }
|
||||||
|
#
|
||||||
|
# each overriding function accepts a `data` argument;
|
||||||
|
# generated from the base implementation of the doctype dashboard,
|
||||||
|
# along with any modifications made in other Frappe apps
|
||||||
|
# override_doctype_dashboards = {
|
||||||
|
# "Task": "taxes_az.task.get_dashboard_data"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# exempt linked doctypes from being automatically cancelled
|
||||||
|
#
|
||||||
|
# auto_cancel_exempted_doctypes = ["Auto Repeat"]
|
||||||
|
|
||||||
|
# Ignore links to specified DocTypes when deleting documents
|
||||||
|
# -----------------------------------------------------------
|
||||||
|
|
||||||
|
# ignore_links_on_delete = ["Communication", "ToDo"]
|
||||||
|
|
||||||
|
# Request Events
|
||||||
|
# ----------------
|
||||||
|
# before_request = ["taxes_az.utils.before_request"]
|
||||||
|
# after_request = ["taxes_az.utils.after_request"]
|
||||||
|
|
||||||
|
# Job Events
|
||||||
|
# ----------
|
||||||
|
# before_job = ["taxes_az.utils.before_job"]
|
||||||
|
# after_job = ["taxes_az.utils.after_job"]
|
||||||
|
|
||||||
|
# User Data Protection
|
||||||
|
# --------------------
|
||||||
|
|
||||||
|
# user_data_fields = [
|
||||||
|
# {
|
||||||
|
# "doctype": "{doctype_1}",
|
||||||
|
# "filter_by": "{filter_by}",
|
||||||
|
# "redact_fields": ["{field_1}", "{field_2}"],
|
||||||
|
# "partial": 1,
|
||||||
|
# },
|
||||||
|
# {
|
||||||
|
# "doctype": "{doctype_2}",
|
||||||
|
# "filter_by": "{filter_by}",
|
||||||
|
# "partial": 1,
|
||||||
|
# },
|
||||||
|
# {
|
||||||
|
# "doctype": "{doctype_3}",
|
||||||
|
# "strict": False,
|
||||||
|
# },
|
||||||
|
# {
|
||||||
|
# "doctype": "{doctype_4}"
|
||||||
|
# }
|
||||||
|
# ]
|
||||||
|
|
||||||
|
# Authentication and authorization
|
||||||
|
# --------------------------------
|
||||||
|
|
||||||
|
# auth_hooks = [
|
||||||
|
# "taxes_az.auth.validate"
|
||||||
|
# ]
|
||||||
|
|
||||||
|
# Automatically update python controller files with type annotations for this app.
|
||||||
|
# export_python_type_annotations = True
|
||||||
|
|
||||||
|
# default_log_clearing_doctypes = {
|
||||||
|
# "Logging DocType Name": 30 # days to retain logs
|
||||||
|
# }
|
||||||
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Taxes Az
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
[pre_model_sync]
|
||||||
|
# Patches added in this section will be executed before doctypes are migrated
|
||||||
|
# Read docs to understand patches: https://frappeframework.com/docs/v14/user/en/database-migrations
|
||||||
|
|
||||||
|
[post_model_sync]
|
||||||
|
# Patches added in this section will be executed after doctypes are migrated
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
// Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
// For license information, please see license.txt
|
||||||
|
|
||||||
|
// frappe.ui.form.on("Aksiz beyannamesi", {
|
||||||
|
// refresh(frm) {
|
||||||
|
|
||||||
|
// },
|
||||||
|
// });
|
||||||
|
|
@ -0,0 +1,209 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-07-29 19:21:47.575889",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"tab1",
|
||||||
|
"idare",
|
||||||
|
"vergi_orqan\u0131",
|
||||||
|
"vergi_dovru",
|
||||||
|
"ay",
|
||||||
|
"il",
|
||||||
|
"saxsi",
|
||||||
|
"voen",
|
||||||
|
"od\u0259yici_tipi",
|
||||||
|
"adi",
|
||||||
|
"section_break_izkc",
|
||||||
|
"mob_nomr\u0259_1",
|
||||||
|
"mob_nomr\u0259_2",
|
||||||
|
"column_break_ezfi",
|
||||||
|
"sahar_nomra_1",
|
||||||
|
"sahar_nomra_2",
|
||||||
|
"section_break_xeln",
|
||||||
|
"taqdim_olunmus_alavalarin_say\u0131",
|
||||||
|
"bayannamanin_novu",
|
||||||
|
"daqiqlasdirilmis_bayannamenin",
|
||||||
|
"xususi_raz\u0131l\u0131g\u0131n",
|
||||||
|
"nomre_si",
|
||||||
|
"seriyasi",
|
||||||
|
"verilme_tarixi",
|
||||||
|
"quvveye_minme_tarixi",
|
||||||
|
"quvveden_du\u015fme_tarixi",
|
||||||
|
"tab_2_tab",
|
||||||
|
"data_gxnx"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "vergi_orqan\u0131",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"label": "Vergi Orqan\u0131",
|
||||||
|
"options": "\n2 sayl\u0131 \u018frazi Vergil\u0259r Ba\u015f idar\u0259si\n3 sayl\u0131 \u018frazi Vergil\u0259r \u0130dar\u0259si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vergi_dovru",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"label": "Vergi d\u00f6vr\u00fc",
|
||||||
|
"options": "Ayl\u0131g"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "ay",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"label": "Ay",
|
||||||
|
"options": "Yanvar\nFevral\n\u0130yun\n\u0130yul"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "il",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "\u0130l",
|
||||||
|
"length": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "idare",
|
||||||
|
"fieldtype": "Section Break",
|
||||||
|
"label": "\u0130dar\u0259"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "saxsi",
|
||||||
|
"fieldtype": "Section Break",
|
||||||
|
"label": "\u015e\u0259xsi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "voen",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "V\u00d6EN",
|
||||||
|
"length": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "od\u0259yici_tipi",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"label": "\u00d6d\u0259yi\u00e7i tipi",
|
||||||
|
"options": "H\u00fcquqi",
|
||||||
|
"read_only": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "Ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "section_break_izkc",
|
||||||
|
"fieldtype": "Section Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "mob_nomr\u0259_1",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "Mob n\u00f6mr\u0259 1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "mob_nomr\u0259_2",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "Mob n\u00f6mr\u0259 2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "column_break_ezfi",
|
||||||
|
"fieldtype": "Column Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahar_nomra_1",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "\u015e\u0259h\u0259r n\u00f6mr\u0259 1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahar_nomra_2",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "\u015e\u0259h\u0259r n\u00f6mr\u0259 2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "section_break_xeln",
|
||||||
|
"fieldtype": "Section Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "taqdim_olunmus_alavalarin_say\u0131",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "T\u0259qdim olunmu\u015f \u0259lav\u0259l\u0259rin say\u0131",
|
||||||
|
"length": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "bayannamanin_novu",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"label": "B\u0259yannam\u0259nin n\u00f6v\u00fc",
|
||||||
|
"options": "Cari\n...\n...\n..."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "daqiqlasdirilmis_bayannamenin",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "D\u0259qiql\u0259\u015fdirilmi\u015f b\u0259yannam\u0259nin t\u0259qdim edilm\u0259si bar\u0259d\u0259 bildiri\u015fin n\u00f6mr\u0259si",
|
||||||
|
"length": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "xususi_raz\u0131l\u0131g\u0131n",
|
||||||
|
"fieldtype": "Section Break",
|
||||||
|
"label": "X\u00fcsusi raz\u0131l\u0131\u011f\u0131n"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "nomre_si",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "\u2116-s\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "seriyasi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "Seriyas\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "verilme_tarixi",
|
||||||
|
"fieldtype": "Date",
|
||||||
|
"label": "Verilm\u0259 tarixi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "quvveye_minme_tarixi",
|
||||||
|
"fieldtype": "Date",
|
||||||
|
"label": "Q\u00fcvv\u0259y\u0259 minm\u0259 tarixi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "quvveden_du\u015fme_tarixi",
|
||||||
|
"fieldtype": "Date",
|
||||||
|
"label": "Q\u00fcvv\u0259d\u0259n d\u00fc\u015fm\u0259 tarixi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "tab_2_tab",
|
||||||
|
"fieldtype": "Tab Break",
|
||||||
|
"label": "Tab 2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "data_gxnx",
|
||||||
|
"fieldtype": "Data"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "tab1",
|
||||||
|
"fieldtype": "Tab Break",
|
||||||
|
"label": "\u00dcmumi m\u0259lumat"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-08-05 14:32:53.706806",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Aksiz beyannamesi",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [
|
||||||
|
{
|
||||||
|
"create": 1,
|
||||||
|
"delete": 1,
|
||||||
|
"email": 1,
|
||||||
|
"export": 1,
|
||||||
|
"print": 1,
|
||||||
|
"read": 1,
|
||||||
|
"report": 1,
|
||||||
|
"role": "System Manager",
|
||||||
|
"share": 1,
|
||||||
|
"write": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class Aksizbeyannamesi(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and Contributors
|
||||||
|
# See license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.tests.utils import FrappeTestCase
|
||||||
|
|
||||||
|
|
||||||
|
class TestAksizbeyannamesi(FrappeTestCase):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,122 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-19 12:23:26.907062",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"ss",
|
||||||
|
"serencam_veren_orqanin_adi",
|
||||||
|
"serencamin_nomresi",
|
||||||
|
"serencemanin_tarixi",
|
||||||
|
"torpaq_sahesi",
|
||||||
|
"tikintinin_unvan\u0131",
|
||||||
|
"poct_indeksi",
|
||||||
|
"tikintinin_yerleysdiyi_zona",
|
||||||
|
"tikintinin_sahesi",
|
||||||
|
"tikinitnin_vergi_sahesi",
|
||||||
|
"zona_emsali",
|
||||||
|
"tikinti_sahesinin_teyinati",
|
||||||
|
"qeyri_yasayis",
|
||||||
|
"vergi_meblegi"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "ss",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S/s"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "serencam_veren_orqanin_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "S\u0259rancam ver\u0259n orqan\u0131n ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "serencamin_nomresi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S\u0259rancam\u0259n \u2116-si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "serencemanin_tarixi",
|
||||||
|
"fieldtype": "Date",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S\u0259rancam\u0131n tarixi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "torpaq_sahesi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259si m2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "tikintinin_unvan\u0131",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Tikintinin \u00fcnvanlar\u0131 (po\u00e7t indeksi g\u00f6st\u0259rilm\u0259kl\u0259)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "poct_indeksi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Po\u00e7t indeksi",
|
||||||
|
"length": 6
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "tikintinin_yerleysdiyi_zona",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Tikintinin yerl\u0259\u015fdiyi zona (\u015f\u0259h\u0259r,rayon)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "tikintinin_sahesi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Tikintinin \u00fcmumi sah\u0259si (m2)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "tikinitnin_vergi_sahesi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Tikintinin vergiy\u0259 c\u0259lb edil\u0259n sah\u0259si m2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "zona_emsali",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Zona \u0259msal\u0131",
|
||||||
|
"options": "zona 1\nzona 2\nzona 3\nzona 4\nzona 5\nzona 6\nzona 7\nzona 8\nzona 9\nzona 10\nzona 11\nzona 12\nG\u0259nc\u0259, Sumqay\u0131t v\u0259 X\u0131rdalan\nAb\u015feron rayonunun q\u0259s\u0259b\u0259 v\u0259 k\u0259ndl\u0259ri (X\u0131rdalan \u015f\u0259h\u0259ri istisna olmaqla), \u015eirvan, Ming\u0259\u00e7evir, Nax\u00e7\u0131van, L\u0259nk\u0259ran, Yevlax, \u015e\u0259ki v\u0259 Naftalan\ndig\u0259r rayon (\u015f\u0259h\u0259r) v\u0259 q\u0259s\u0259b\u0259l\u0259r (k\u0259ndl\u0259r)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "tikinti_sahesinin_teyinati",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"label": "Tikinti sah\u0259sinin t\u0259yinat\u0131 Ya\u015fay\u0131\u015f sah\u0259si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "qeyri_yasayis",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"label": "Tikinti sah\u0259sinin t\u0259yinat\u0131 Q/ya\u015fay\u0131\u015f sah\u0259si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vergi_meblegi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"label": "Vergi m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:47:17.509082",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Bina tikintisi fealiyeti ile mesgul olan sexslerin SVB table1",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class BinatikintisifealiyetiilemesgulolansexslerinSVBtable1(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-19 12:20:05.440645",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"gostericiler",
|
||||||
|
"binanin_umumi_sahesi",
|
||||||
|
"verginin_meblegi"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "gostericiler",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "G\u00f6st\u0259ricil\u0259r"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "binanin_umumi_sahesi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Binan\u0131n \u00fcmumi sah\u0259si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "verginin_meblegi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Verginin m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:47:20.181419",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Bina tikintisi fealiyyeti ile mesgul olan sexslerin SVB table",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class BinatikintisifealiyyetiilemesgulolansexslerinSVBtable(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
// Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
// For license information, please see license.txt
|
||||||
|
|
||||||
|
// frappe.ui.form.on("Bina tikintisi fealiyyeti ile mesgul olan shexslerin SVB", {
|
||||||
|
// refresh(frm) {
|
||||||
|
|
||||||
|
// },
|
||||||
|
// });
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class BinatikintisifealiyyetiilemesgulolanshexslerinSVB(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and Contributors
|
||||||
|
# See license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.tests.utils import FrappeTestCase
|
||||||
|
|
||||||
|
|
||||||
|
class TestBinatikintisifealiyyetiilemesgulolanshexslerinSVB(FrappeTestCase):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
// Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
// For license information, please see license.txt
|
||||||
|
|
||||||
|
// frappe.ui.form.on("Dashinmaz emlak uzre sadelesdirilmish verginin beyannamesi", {
|
||||||
|
// refresh(frm) {
|
||||||
|
|
||||||
|
// },
|
||||||
|
// });
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class Dashinmazemlakuzresadelesdirilmishvergininbeyannamesi(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and Contributors
|
||||||
|
# See license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.tests.utils import FrappeTestCase
|
||||||
|
|
||||||
|
|
||||||
|
class TestDashinmazemlakuzresadelesdirilmishvergininbeyannamesi(FrappeTestCase):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-19 14:03:44.233778",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"gostericiler",
|
||||||
|
"ya\u015fay\u0131\u015f_sahe",
|
||||||
|
"vergi_meblegi"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "gostericiler",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "G\u00f6st\u0259ricil\u0259r"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "ya\u015fay\u0131\u015f_sahe",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Ya\u015fay\u0131\u015f v\u0259 qeyri-ya\u015fay\u0131\u015f sah\u0259l\u0259rinin \u00fcmumi sah\u0259si, kv.m-il\u0259"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vergi_meblegi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "verginin m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:47:15.277919",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dasinmaz emlak uzre sadelesdirilmis verginin beyannamesi T1",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DasinmazemlakuzresadelesdirilmisvergininbeyannamesiT1(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,107 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-20 14:26:32.759511",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"ss",
|
||||||
|
"shexsin_adi",
|
||||||
|
"voen",
|
||||||
|
"fin_kod",
|
||||||
|
"torpaq_sah\u0259sinin_\u00fcnvan\u0131",
|
||||||
|
"rayon_adi",
|
||||||
|
"keyfiyyet_qrupu",
|
||||||
|
"dinc",
|
||||||
|
"otlaq",
|
||||||
|
"sahe",
|
||||||
|
"satis_meblegi"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "ss",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S/s"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "shexsin_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sini t\u0259qdim ed\u0259n \u015f\u0259xsin ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "voen",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "V\u00d6EN",
|
||||||
|
"length": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "fin_kod",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "F\u0130N kodu",
|
||||||
|
"length": 7
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "torpaq_sah\u0259sinin_\u00fcnvan\u0131",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sinin \u00fcnvan\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "rayon_adi",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "K\u0259nd t\u0259s\u0259rr\u00fcfat\u0131 t\u0259yinatl\u0131 torpaq sah\u0259sinin yerl\u0259\u015fdiyi kadastr qiym\u0259t rayonunun ad\u0131",
|
||||||
|
"options": "\nAb\u015feron-Qovustan (Ab\u015feron rayonu, Hac\u0131qabul rayonunun N\u0259vahi-Atbulaq massivi, Siy\u0259z\u0259n v\u0259 X\u0131z\u0131 rayonlar\u0131n\u0131n d\u00fcz\u0259n torpaqlar\u0131, habel\u0259 Bak\u0131 v\u0259 Sumqay\u0131t \u015f\u0259h\u0259rl\u0259rinin m\u00f6vcud h\u00fcdudundan k\u0259narda olan k\u0259nd t\u0259s\u0259frr\u00fcfat\u0131 t\u0259yinatl\u0131 torpaqlar)\n\u015eabran-Xa\u00e7maz (Xa\u00e7maz rayonu, D\u0259v\u0259\u00e7i, Quba, Qusar v\u0259 Siy\u0259z\u0259n rayonlar\u0131n\u0131n d\u00fcz\u0259n torpaqlar\u0131)\nQan\u0131x-T\u00fcryan\u00e7ay (Balak\u0259n, Qax, Zaqatala, \u015e\u0259ki, O\u011fuz v\u0259 Q\u0259b\u0259l\u0259 rayonlar\u0131n\u0131n d\u00fcz\u0259n torpaqlar\u0131)\n\u015e\u0259ki-Zaqatala(Balak\u0259n, Qax, Zaqatala, \u015e\u0259ki, O\u011fuz v\u0259 Q\u0259b\u0259l\u0259 rayonlar\u0131n\u0131n da\u011f torpaqlar\u0131)\nQusar-Qonaqk\u0259nd ( Quba, Qusar, D\u0259v\u0259\u00e7i v\u0259 Siy\u0259z\u0259n rayonlar\u0131n\u0131n da\u011f torpaqlar\u0131)\nX\u0131nal\u0131q-Xaltar\u0131 (Qusar v\u0259 Quba rayonlar\u0131n\u0131n orta v\u0259 y\u00fcks\u0259k da\u011f torpaqlar\u0131)\nDa\u011f-\u015eirvan (\u015eamax\u0131, \u0130smay\u0131ll\u0131 rayonlar\u0131, A\u011fsu v\u0259 G\u00f6y\u00e7ay rayonlar\u0131n\u0131n da\u011f torpaqlar\u0131)\nQobusatn-Xilmilli (Qobusatn rayonunun da\u011f torpaqlar\u0131)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "keyfiyyet_qrupu",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Keyfiyy\u0259t qrupu",
|
||||||
|
"options": "\nI\nII\nIII\nIV\nV"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "dinc",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sinin t\u0259yinat\u0131 \u018fkin,dinc v\u0259 \u00e7oxillik \u0259km\u0259l\u0259r"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "otlaq",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sinin t\u0259yinat\u0131 Bi\u00e7\u0259n\u0259k, \u00f6r\u00fc\u015f v\u0259 otlaqlar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahe",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "T\u0259qdim edil\u0259n torpa\u011f\u0131n sah\u0259si, (hektarla)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "satis_meblegi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sat\u0131\u015f m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:46:17.202416",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dasinmaz emlak uzre sadelesdirilmis verginin beyannamesi T10",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DasinmazemlakuzresadelesdirilmisvergininbeyannamesiT10(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-19 14:07:48.092861",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"gostericiler",
|
||||||
|
"torpaq_sahesi",
|
||||||
|
"vergi_meblegi"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "gostericiler",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "G\u00f6st\u0259ricil\u0259r"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "torpaq_sahesi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Topraq sah\u0259l\u0259rinin \u00fcmumi sah\u0259si,kv.m-il\u0259"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vergi_meblegi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "verginin m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:47:11.103388",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dasinmaz emlak uzre sadelesdirilmis verginin beyannamesi T2",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DasinmazemlakuzresadelesdirilmisvergininbeyannamesiT2(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-19 14:12:35.826842",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"gostericiler",
|
||||||
|
"torpaq_sahesi",
|
||||||
|
"vergi_meblegi"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "gostericiler",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "G\u00f6st\u0259ricil\u0259r"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "torpaq_sahesi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259l\u0259rinin \u00fcmumi sah\u0259si, hektarla"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vergi_meblegi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "verginin m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:47:08.390116",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dasinmaz emlak uzre sadelesdirilmis verginin beyannamesi T3",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DasinmazemlakuzresadelesdirilmisvergininbeyannamesiT3(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,44 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-19 14:15:56.057443",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"gostericiler",
|
||||||
|
"data_bvoj",
|
||||||
|
"vegi_meblegi"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "gostericiler",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "G\u00f6st\u0259ricil\u0259r"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "data_bvoj",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vegi_meblegi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "verginin m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:47:05.500169",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dasinmaz emlak uzre sadelesdirilmis verginin beyannamesi T4",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DasinmazemlakuzresadelesdirilmisvergininbeyannamesiT4(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,105 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-19 15:28:21.107838",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"ss",
|
||||||
|
"shexsin_adi",
|
||||||
|
"voen",
|
||||||
|
"fin_kod",
|
||||||
|
"unvan",
|
||||||
|
"zona_emsali",
|
||||||
|
"yasayis_sahesi",
|
||||||
|
"qeyri_yasayis",
|
||||||
|
"sah\u0259",
|
||||||
|
"satis",
|
||||||
|
"vergi_meblegi"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "ss",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S/s"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "shexsin_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Ya\u015fay\u0131\u015f v\u0259 qeyri -ya\u015fay\u0131\u015f sah\u0259l\u0259rini t\u0259qdim ed\u0259n \u015f\u0259xsin ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "voen",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "V\u00d6EN",
|
||||||
|
"length": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "fin_kod",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "F\u0130N kodu",
|
||||||
|
"length": 7
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "unvan",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Ya\u015fay\u0131\u015f v\u0259 qeyri-ya\u015fay\u0131\u015f sah\u0259l\u0259rinin \u00fcnvan\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "zona_emsali",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Zona \u0259msal\u0131",
|
||||||
|
"options": "zona 1\nzona 2\nzona 3\nzona 4\nzona 5\nzona 6\nzona 7\nzona 8\nzona 9\nzona 10\nzona 11\nzona 12\nG\u0259nc\u0259, Sumqay\u0131t v\u0259 X\u0131rdalan\nAb\u015feron rayonunun q\u0259s\u0259b\u0259 v\u0259 k\u0259ndl\u0259ri (X\u0131rdalan \u015f\u0259h\u0259ri istisna olmaqla), \u015eirvan, Ming\u0259\u00e7evir, Nax\u00e7\u0131van, L\u0259nk\u0259ran, Yevlax, \u015e\u0259ki v\u0259 Naftalan\ndig\u0259r rayon (\u015f\u0259h\u0259r) v\u0259 q\u0259s\u0259b\u0259l\u0259r (k\u0259ndl\u0259r)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "yasayis_sahesi",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Ya\u015fay\u0131\u015f v\u0259 qeyri-ya\u015fay\u0131\u015f sah\u0259l\u0259rinin t\u0259yinat\u0131, Ya\u015fay\u0131\u015f sah\u0259si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "qeyri_yasayis",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Ya\u015fay\u0131\u015f v\u0259 qeyri-ya\u015fay\u0131\u015f sah\u0259l\u0259rinin t\u0259yinat\u0131, Q-ya\u015fay\u0131\u015f sah\u0259si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sah\u0259",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Ya\u015fay\u0131\u015f v\u0259 qeyri-ya\u015fay\u0131\u015f sah\u0259l\u0259rinin sah\u0259si, (kv.m.)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "satis",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sat\u0131\u015f m\u0259bl\u0259\u011fi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vergi_meblegi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"label": "vergi m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:46:31.704554",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dasinmaz emlak uzre sadelesdirilmis verginin beyannamesi T5",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DasinmazemlakuzresadelesdirilmisvergininbeyannamesiT5(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,111 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-19 15:38:43.721126",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"ss",
|
||||||
|
"shexsin_adi",
|
||||||
|
"voen",
|
||||||
|
"fin_kod",
|
||||||
|
"unvan",
|
||||||
|
"tarix",
|
||||||
|
"nomresi",
|
||||||
|
"zoan_emsali",
|
||||||
|
"yasayis_sahesi",
|
||||||
|
"qeyri_yasayis",
|
||||||
|
"sahe",
|
||||||
|
"satis"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "ss",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S/s"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "shexsin_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Ya\u015fay\u0131\u015f v\u0259 qeyri -ya\u015fay\u0131\u015f sah\u0259l\u0259rini t\u0259qdim ed\u0259n \u015f\u0259xsin ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "voen",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "V\u00d6EN"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "fin_kod",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "F\u0130N kodu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "unvan",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Ya\u015fay\u0131\u015f v\u0259 qeyri-ya\u015fay\u0131\u015f sah\u0259l\u0259rinin \u00fcnvan\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "tarix",
|
||||||
|
"fieldtype": "Date",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Azadolmaya \u0259sas ver\u0259n s\u0259n\u0259din tarixi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "nomresi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Azadolmaya \u0259sas ver\u0259n s\u0259n\u0259din n\u00f6mr\u0259si "
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "zoan_emsali",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Zona \u0259msal\u0131",
|
||||||
|
"options": "zona 1\nzona 2\nzona 3\nzona 4\nzona 5\nzona 6\nzona 7\nzona 8\nzona 9\nzona 10\nzona 11\nzona 12\nG\u0259nc\u0259, Sumqay\u0131t v\u0259 X\u0131rdalan\nAb\u015feron rayonunun q\u0259s\u0259b\u0259 v\u0259 k\u0259ndl\u0259ri (X\u0131rdalan \u015f\u0259h\u0259ri istisna olmaqla), \u015eirvan, Ming\u0259\u00e7evir, Nax\u00e7\u0131van, L\u0259nk\u0259ran, Yevlax, \u015e\u0259ki v\u0259 Naftalan\ndig\u0259r rayon (\u015f\u0259h\u0259r) v\u0259 q\u0259s\u0259b\u0259l\u0259r (k\u0259n"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "yasayis_sahesi",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Ya\u015fay\u0131\u015f v\u0259 qeyri-ya\u015fay\u0131\u015f sah\u0259l\u0259rinin t\u0259yinat\u0131, Ya\u015fay\u0131\u015f sah\u0259si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "qeyri_yasayis",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Ya\u015fay\u0131\u015f v\u0259 qeyri-ya\u015fay\u0131\u015f sah\u0259l\u0259rinin t\u0259yinat\u0131, Q-ya\u015fay\u0131\u015f sah\u0259si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahe",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Ya\u015fay\u0131\u015f v\u0259 qeyri-ya\u015fay\u0131\u015f sah\u0259l\u0259rinin sah\u0259si, (kv.m.)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "satis",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sat\u0131\u015f m\u0259bl\u0259\u011fi"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:47:02.780908",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dasinmaz emlak uzre sadelesdirilmis verginin beyannamesi T6",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DasinmazemlakuzresadelesdirilmisvergininbeyannamesiT6(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,106 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-19 16:56:35.601809",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"ss",
|
||||||
|
"shexsin_adi",
|
||||||
|
"voen",
|
||||||
|
"fin_kod",
|
||||||
|
"unvan",
|
||||||
|
"sahe_teyinat",
|
||||||
|
"vetandas",
|
||||||
|
"zona_emsali",
|
||||||
|
"sahesi",
|
||||||
|
"satis",
|
||||||
|
"vergi_meblegi"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "ss",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S/s"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "shexsin_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sini t\u0259qdim ed\u0259n \u015f\u0259xsin ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "voen",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "V\u00d6EN",
|
||||||
|
"length": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "fin_kod",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "F\u0130N kodu",
|
||||||
|
"length": 7
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "unvan",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sinin \u00fcnvan\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "sahe_teyinat",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sinin t\u0259yinat\u0131 S\u0259naye, tikinti, n\u0259qliyyat, rabit\u0259, ticar\u0259t-m\u0259i\u015f\u0259t xidm\u0259ti v\u0259 dig\u0259r x\u00fcsusi t\u0259yinatl\u0131 torpaqlar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "vetandas",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sinin t\u0259yinat\u0131 Ya\u015fay\u0131\u015f fondlar\u0131n\u0131n, h\u0259yatyan\u0131 sah\u0259l\u0259rin torpaqlar\u0131 v\u0259 v\u0259tanda\u015flar\u0131n ba\u011f sah\u0259l\u0259rinin tutdu\u011fu torpaqlar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "zona_emsali",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Zona \u0259msal\u0131",
|
||||||
|
"options": "zona 1\nzona 2\nzona 3\nzona 4\nzona 5\nzona 6\nzona 7\nzona 8\nzona 9\nzona 10\nzona 11\nzona 12\nG\u0259nc\u0259, Sumqay\u0131t v\u0259 X\u0131rdalan\nAb\u015feron rayonunun q\u0259s\u0259b\u0259 v\u0259 k\u0259ndl\u0259ri (X\u0131rdalan \u015f\u0259h\u0259ri istisna olmaqla), \u015eirvan, Ming\u0259\u00e7evir, Nax\u00e7\u0131van, L\u0259nk\u0259ran, Yevlax, \u015e\u0259ki v\u0259 Naftalan\ndig\u0259r rayon (\u015f\u0259h\u0259r) v\u0259 q\u0259s\u0259b\u0259l\u0259r (k\u0259ndl\u0259r)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahesi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "T\u0259qdim edil\u0259n torpa\u011f\u0131n sah\u0259si, (kv.m.)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "satis",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sat\u0131\u015f m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vergi_meblegi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "vergi m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:46:27.063682",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dasinmaz emlak uzre sadelesdirilmis verginin beyannamesi T7",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DasinmazemlakuzresadelesdirilmisvergininbeyannamesiT7(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,114 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-20 12:04:10.251295",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"ss",
|
||||||
|
"shexsin_adi",
|
||||||
|
"voen",
|
||||||
|
"fin_kod",
|
||||||
|
"unvan",
|
||||||
|
"rayon_adi",
|
||||||
|
"keyfiyyet_qrupu",
|
||||||
|
"dinc",
|
||||||
|
"otlaq",
|
||||||
|
"sahe",
|
||||||
|
"satis_meblegi",
|
||||||
|
"vergi_meblegi"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "ss",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S/s"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "shexsin_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sini t\u0259qdim ed\u0259n \u015f\u0259xsin ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "voen",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "V\u00d6EN",
|
||||||
|
"length": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "fin_kod",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "F\u0130N kodu",
|
||||||
|
"length": 7
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "unvan",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sinin \u00fcnvan\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "rayon_adi",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "K\u0259nd t\u0259s\u0259rr\u00fcfat\u0131 t\u0259yinatl\u0131 torpaq sah\u0259sinin yerl\u0259\u015fdiyi kadastr qiym\u0259t rayonunun ad\u0131",
|
||||||
|
"options": "\nAb\u015feron-Qovustan (Ab\u015feron rayonu, Hac\u0131qabul rayonunun N\u0259vahi-Atbulaq massivi, Siy\u0259z\u0259n v\u0259 X\u0131z\u0131 rayonlar\u0131n\u0131n d\u00fcz\u0259n torpaqlar\u0131, habel\u0259 Bak\u0131 v\u0259 Sumqay\u0131t \u015f\u0259h\u0259rl\u0259rinin m\u00f6vcud h\u00fcdudundan k\u0259narda olan k\u0259nd t\u0259s\u0259frr\u00fcfat\u0131 t\u0259yinatl\u0131 torpaqlar)\n\u015eabran-Xa\u00e7maz (Xa\u00e7maz rayonu, D\u0259v\u0259\u00e7i, Quba, Qusar v\u0259 Siy\u0259z\u0259n rayonlar\u0131n\u0131n d\u00fcz\u0259n torpaqlar\u0131)\nQan\u0131x-T\u00fcryan\u00e7ay (Balak\u0259n, Qax, Zaqatala, \u015e\u0259ki, O\u011fuz v\u0259 Q\u0259b\u0259l\u0259 rayonlar\u0131n\u0131n d\u00fcz\u0259n torpaqlar\u0131)\n\u015e\u0259ki-Zaqatala(Balak\u0259n, Qax, Zaqatala, \u015e\u0259ki, O\u011fuz v\u0259 Q\u0259b\u0259l\u0259 rayonlar\u0131n\u0131n da\u011f torpaqlar\u0131)\nQusar-Qonaqk\u0259nd ( Quba, Qusar, D\u0259v\u0259\u00e7i v\u0259 Siy\u0259z\u0259n rayonlar\u0131n\u0131n da\u011f torpaqlar\u0131)\nX\u0131nal\u0131q-Xaltar\u0131 (Qusar v\u0259 Quba rayonlar\u0131n\u0131n orta v\u0259 y\u00fcks\u0259k da\u011f torpaqlar\u0131)\nDa\u011f-\u015eirvan (\u015eamax\u0131, \u0130smay\u0131ll\u0131 rayonlar\u0131, A\u011fsu v\u0259 G\u00f6y\u00e7ay rayonlar\u0131n\u0131n da\u011f torpaqlar\u0131)\nQobusatn-Xilmilli (Qobusatn rayonunun da\u011f torpaqlar\u0131)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "keyfiyyet_qrupu",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Keyfiyy\u0259t qrupu",
|
||||||
|
"options": "\nI\nII\nIII\nIV\nV"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "dinc",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sinin t\u0259yinat\u0131 \u018fkin,dinc v\u0259 \u00e7oxillik \u0259km\u0259l\u0259r"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "otlaq",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sinin t\u0259yinat\u0131 Bi\u00e7\u0259n\u0259k, \u00f6r\u00fc\u015f v\u0259 otlaqlar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahe",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "T\u0259qdim edil\u0259n torpa\u011f\u0131n sah\u0259si, (hektarla)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "satis_meblegi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sat\u0131\u015f m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vergi_meblegi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "vergi m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:46:23.734243",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dasinmaz emlak uzre sadelesdirilmis verginin beyannamesi T8",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DasinmazemlakuzresadelesdirilmisvergininbeyannamesiT8(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,99 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-20 14:15:55.449532",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"ss",
|
||||||
|
"shexsin_adi",
|
||||||
|
"voen",
|
||||||
|
"fin_kod",
|
||||||
|
"unvan",
|
||||||
|
"sahe_teyinat",
|
||||||
|
"vetandas",
|
||||||
|
"zona_emsali",
|
||||||
|
"sahesi",
|
||||||
|
"satis"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "ss",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S/s"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "shexsin_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sini t\u0259qdim ed\u0259n \u015f\u0259xsin ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "voen",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "V\u00d6EN",
|
||||||
|
"length": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "fin_kod",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "F\u0130N kodu",
|
||||||
|
"length": 7
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "unvan",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sinin \u00fcnvan\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "sahe_teyinat",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sinin t\u0259yinat\u0131 S\u0259naye, tikinti, n\u0259qliyyat, rabit\u0259, ticar\u0259t-m\u0259i\u015f\u0259t xidm\u0259ti v\u0259 dig\u0259r x\u00fcsusi t\u0259yinatl\u0131 torpaqlar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "vetandas",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Torpaq sah\u0259sinin t\u0259yinat\u0131 Ya\u015fay\u0131\u015f fondlar\u0131n\u0131n, h\u0259yatyan\u0131 sah\u0259l\u0259rin torpaqlar\u0131 v\u0259 v\u0259tanda\u015flar\u0131n ba\u011f sah\u0259l\u0259rinin tutdu\u011fu torpaqlar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "zona_emsali",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Zona \u0259msal\u0131",
|
||||||
|
"options": "zona 1\nzona 2\nzona 3\nzona 4\nzona 5\nzona 6\nzona 7\nzona 8\nzona 9\nzona 10\nzona 11\nzona 12\nG\u0259nc\u0259, Sumqay\u0131t v\u0259 X\u0131rdalan\nAb\u015feron rayonunun q\u0259s\u0259b\u0259 v\u0259 k\u0259ndl\u0259ri (X\u0131rdalan \u015f\u0259h\u0259ri istisna olmaqla), \u015eirvan, Ming\u0259\u00e7evir, Nax\u00e7\u0131van, L\u0259nk\u0259ran, Yevlax, \u015e\u0259ki v\u0259 Naftalan\ndig\u0259r rayon (\u015f\u0259h\u0259r) v\u0259 q\u0259s\u0259b\u0259l\u0259r (k\u0259ndl\u0259r)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahesi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "T\u0259qdim edil\u0259n torpa\u011f\u0131n sah\u0259si, (kv.m.)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "satis",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sat\u0131\u015f m\u0259bl\u0259\u011fi, manatla"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:46:19.909789",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dasinmaz emlak uzre sadelesdirilmis verginin beyannamesi T9",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DasinmazemlakuzresadelesdirilmisvergininbeyannamesiT9(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
// Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
// For license information, please see license.txt
|
||||||
|
|
||||||
|
// frappe.ui.form.on("Dovlet rusumunun tutulmasi haqqinda hesabat", {
|
||||||
|
// refresh(frm) {
|
||||||
|
|
||||||
|
// },
|
||||||
|
// });
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class Dovletrusumununtutulmasihaqqindahesabat(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and Contributors
|
||||||
|
# See license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.tests.utils import FrappeTestCase
|
||||||
|
|
||||||
|
|
||||||
|
class TestDovletrusumununtutulmasihaqqindahesabat(FrappeTestCase):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,93 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-20 16:18:03.686681",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"setrin_kodu",
|
||||||
|
"hereketin_adi",
|
||||||
|
"sahibin_tam_adi",
|
||||||
|
"sahib_vergi_odeyicisidir",
|
||||||
|
"sahibin_vergi_odeyicisi_statusu",
|
||||||
|
"voen",
|
||||||
|
"vesiqenin_seriyasi",
|
||||||
|
"vesiqenin_nomresi",
|
||||||
|
"tarix"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "setrin_kodu",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S\u0259trin kodu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "hereketin_adi",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "H\u0259r\u0259k\u0259tin ad\u0131",
|
||||||
|
"options": "\nDa\u015f\u0131nmaz \u0259mlak v\u0259 ya torpa\u011f\u0131n alq\u0131-satq\u0131s\u0131 il\u0259 \u0259laq\u0259dar ba\u011flanm\u0131\u015f \u0259qdl\u0259r \u00fczr\u0259\nDa\u015f\u0131nmaz \u0259mlak v\u0259 ya torpa\u011f\u0131n icar\u0259y\u0259 verilm\u0259si il\u0259 \u0259laq\u0259dar ba\u011flanm\u0131\u015f \u0259qdl\u0259r \u00fczr\u0259\nDa\u015f\u0131nmaz \u0259mlak v\u0259 ya torpa\u011f\u0131n ba\u011f\u0131\u015flanmas\u0131 il\u0259 \u0259laq\u0259dar ba\u011flanm\u0131\u015f \u0259qdl\u0259r \u00fczr\u0259"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahibin_tam_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sahibin tam ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahib_vergi_odeyicisidir",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sahib vergi \u00f6deyicisidir",
|
||||||
|
"options": "\nT\u0259sdiq\n\u0130nkar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahibin_vergi_odeyicisi_statusu",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sahibin vergi \u00f6d\u0259yicisi statusu",
|
||||||
|
"options": "\nFiziki\nH\u00fcquqi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "voen",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "V\u00d6EN-i",
|
||||||
|
"length": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vesiqenin_seriyasi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u015e\u0259xsiyy\u0259t v\u0259siq\u0259sinin seriyas\u0131",
|
||||||
|
"length": 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vesiqenin_nomresi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u015e\u0259xsiyy\u0259t v\u0259siq\u0259sinin n\u00f6mr\u0259si",
|
||||||
|
"length": 8
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "tarix",
|
||||||
|
"fieldtype": "Date",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sahiblik h\u00fcququ alma tarixi"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:46:10.822668",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dovlet rusumunun tutulmasi haqqinda hesabat Table2",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DovletrusumununtutulmasihaqqindahesabatTable2(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,85 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-20 16:26:44.847135",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"setrin_kodu",
|
||||||
|
"sahibin_tam_adi",
|
||||||
|
"sahib_vergi_odeyicisidir",
|
||||||
|
"sahibin_vergi_odeyicisi_statusu",
|
||||||
|
"voen",
|
||||||
|
"vesiqenin_seriyasi",
|
||||||
|
"vesiqenin_nomresi",
|
||||||
|
"tarix"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "setrin_kodu",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S\u0259trin kodu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahibin_tam_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sahibin tam ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahib_vergi_odeyicisidir",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sahib vergi \u00f6deyicisidir",
|
||||||
|
"options": "\nT\u0259sdiq\n\u0130nkar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "sahibin_vergi_odeyicisi_statusu",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sahibin vergi \u00f6d\u0259yicisi statusu",
|
||||||
|
"options": "\nFiziki\nH\u00fcquqi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "voen",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "V\u00d6EN",
|
||||||
|
"length": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vesiqenin_seriyasi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u015e\u0259xsiyy\u0259t v\u0259siq\u0259sinin seriyas\u0131",
|
||||||
|
"length": 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "vesiqenin_nomresi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u015e\u0259xsiyy\u0259t v\u0259siq\u0259sinin n\u00f6mr\u0259si",
|
||||||
|
"length": 8
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "tarix",
|
||||||
|
"fieldtype": "Date",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Sahiblik h\u00fcququ alma tarixi"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:46:07.826339",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dovlet rusumunun tutulmasi haqqinda hesabat Table3",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DovletrusumununtutulmasihaqqindahesabatTable3(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,81 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-20 16:35:58.576394",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"setrin_kodu",
|
||||||
|
"novu",
|
||||||
|
"rayonun_adi",
|
||||||
|
"kendin_adi",
|
||||||
|
"prospektin_adi",
|
||||||
|
"binain_nomresi",
|
||||||
|
"menzil_nomresi",
|
||||||
|
"deyeri"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "setrin_kodu",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S\u0259trin kodu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "novu",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "N\u00f6v\u00fc",
|
||||||
|
"options": "\nDa\u015f\u0131nmaz \u0259mlak\nTorpaq"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "rayonun_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "-\u015f\u0259h\u0259rin v\u0259 ya inzibati rayonun ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "kendin_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "-k\u0259ndin ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "prospektin_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "-prospektin, k\u00fc\u00e7\u0259nin ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "binain_nomresi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "-bina v\u0259 ya evin n\u00f6mr\u0259si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "menzil_nomresi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "-m\u0259nzil n\u00f6mr\u0259si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "deyeri",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "D\u0259y\u0259ri"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:46:05.293662",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dovlet rusumunun tutulmasi haqqinda hesabat Table4",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DovletrusumununtutulmasihaqqindahesabatTable4(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,122 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-20 16:43:02.602547",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"setrin_kodu",
|
||||||
|
"icareye_verenin_adi",
|
||||||
|
"icareye_verenin_voeni",
|
||||||
|
"icareye_verenin_finkodu",
|
||||||
|
"goturenin_adi",
|
||||||
|
"icareye_goturenin_voeni",
|
||||||
|
"goturenin_finkodu",
|
||||||
|
"dasinar_emlak",
|
||||||
|
"dasinmaz_emlak",
|
||||||
|
"torpaq_sahesi",
|
||||||
|
"unvan",
|
||||||
|
"muqavile_tarixi",
|
||||||
|
"mebleq"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "setrin_kodu",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S\u0259trin kodu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "icareye_verenin_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u018fmlak\u0131, o c\u00fcml\u0259d\u0259n torpaq sah\u0259sini icar\u0259y\u0259 (kiray\u0259y\u0259,istifad\u0259y\u0259) ver\u0259n fiziki \u015f\u0259xsin soyad\u0131, ad\u0131, atas\u0131n\u0131n ad\u0131 v\u0259 ya h\u00fcquqi \u015f\u0259xsin ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "icareye_verenin_voeni",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u018fmlak\u0131, o c\u00fcml\u0259d\u0259n torpaq sah\u0259sini icar\u0259y\u0259 (kiray\u0259y\u0259,istifad\u0259y\u0259) ver\u0259nin V\u00d6EN-i",
|
||||||
|
"length": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "icareye_verenin_finkodu",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u018fmlak\u0131, o c\u00fcml\u0259d\u0259n torpaq sah\u0259sini icar\u0259y\u0259 (kiray\u0259y\u0259,istifad\u0259y\u0259) ver\u0259nin F\u0130N kodu",
|
||||||
|
"length": 7
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "goturenin_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u018fmlak\u0131, o c\u00fcml\u0259d\u0259n torpaq sah\u0259sini icar\u0259y\u0259 (kiray\u0259y\u0259,istifad\u0259y\u0259) g\u00f6t\u00fcr\u0259n fiziki \u015f\u0259xsin soyad\u0131, ad\u0131, atas\u0131n\u0131n ad\u0131 v\u0259 ya h\u00fcquqi \u015f\u0259xsin ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "icareye_goturenin_voeni",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u018fmlak\u0131, o c\u00fcml\u0259d\u0259n torpaq sah\u0259sini icar\u0259y\u0259 (kiray\u0259y\u0259,istifad\u0259y\u0259) g\u00f6t\u00fcr\u0259nin V\u00d6EN-i",
|
||||||
|
"length": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "goturenin_finkodu",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u018fmlak\u0131, o c\u00fcml\u0259d\u0259n torpaq sah\u0259sini icar\u0259y\u0259 (kiray\u0259y\u0259,istifad\u0259y\u0259) g\u00f6t\u00fcr\u0259nin F\u0130N-kodu",
|
||||||
|
"length": 7
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "dasinar_emlak",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u018fmlak\u0131n n\u00f6v\u00fc/ Da\u015f\u0131nar \u0259mlak"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "dasinmaz_emlak",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u018fmlak\u0131n n\u00f6v\u00fc/ Da\u015f\u0131nmaz \u0259mlak"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "torpaq_sahesi",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u018fmlak\u0131n n\u00f6v\u00fc/ Torpaq sah\u0259si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "unvan",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u0130car\u0259y\u0259 (kiray\u0259y\u0259,istifad\u0259y\u0259) veril\u0259n da\u015f\u0131nmaz \u0259mlak\u0131n v\u0259 ya torpaq sah\u0259sniin \u00fcnvan\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "muqavile_tarixi",
|
||||||
|
"fieldtype": "Date",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u0130car\u0259y\u0259 (kiray\u0259,istfad\u0259) m\u00fcqavil\u0259sinin tarixi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "mebleq",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u0130care (kiray\u0259,istifad\u0259) haqq\u0131n\u0131n ayl\u0131q m\u0259bl\u0259\u011fi (manatla)"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:46:00.960795",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dovlet rusumunun tutulmasi haqqinda hesabat Table5",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DovletrusumununtutulmasihaqqindahesabatTable5(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-20 16:11:37.389997",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"ad",
|
||||||
|
"voen",
|
||||||
|
"fealiyyet_novunun_adi",
|
||||||
|
"unvan",
|
||||||
|
"lisenziyanin_qeydiyyat_nomresi",
|
||||||
|
"tarix"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "ad",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Lisenziya veril\u0259n h\u00fcquqi \u015f\u0259xsin, xarici h\u00fcquqi \u015f\u0259xsin filial\u0131n\u0131n v\u0259 n\u00fcmay\u0259nd\u0259liyinin ad\u0131 v\u0259 f\u0259rdi sahibkar\u0131n soyad\u0131, ad\u0131, atas\u0131n\u0131n ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "voen",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "V\u00d6EN"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "fealiyyet_novunun_adi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Lisenziya veril\u0259n f\u0259aliyy\u0259t n\u00f6v\u00fcn\u00fcn ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "unvan",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Lisenziya veril\u0259n h\u00fcquqi \u015f\u0259xsin \u00fcnav\u0131 v\u0259 ya f\u0259rdi sahibkar\u0131n f\u0259aliyy\u0259t \u00fcnvan\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "lisenziyanin_qeydiyyat_nomresi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Lisenziyan\u0131n qeydiyyat n\u00f6mr\u0259si"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "tarix",
|
||||||
|
"fieldtype": "Date",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Lisenziyan\u0131n verilm\u0259 tarixi"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:46:14.382310",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "Dovlet rusumunun tutulmasi haqqinda hesabat Table 1",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class DovletrusumununtutulmasihaqqindahesabatTable1(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
// Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
// For license information, please see license.txt
|
||||||
|
|
||||||
|
// frappe.ui.form.on("EDV hesab-fakturalari haqqinda hesabat", {
|
||||||
|
// refresh(frm) {
|
||||||
|
|
||||||
|
// },
|
||||||
|
// });
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class EDVhesabfakturalarihaqqindahesabat(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and Contributors
|
||||||
|
# See license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.tests.utils import FrappeTestCase
|
||||||
|
|
||||||
|
|
||||||
|
class TestEDVhesabfakturalarihaqqindahesabat(FrappeTestCase):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,83 @@
|
||||||
|
{
|
||||||
|
"actions": [],
|
||||||
|
"allow_rename": 1,
|
||||||
|
"creation": "2024-08-26 18:29:30.496033",
|
||||||
|
"doctype": "DocType",
|
||||||
|
"editable_grid": 1,
|
||||||
|
"engine": "InnoDB",
|
||||||
|
"field_order": [
|
||||||
|
"setrin_kodu",
|
||||||
|
"ad",
|
||||||
|
"voen",
|
||||||
|
"tarix",
|
||||||
|
"seriyasi",
|
||||||
|
"nomresi",
|
||||||
|
"deyer",
|
||||||
|
"edv"
|
||||||
|
],
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"fieldname": "setrin_kodu",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "S\u0259trin kodu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "ad",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "VHF-ni t\u0259qdim etmi\u015f \u015f\u0259xsin ad\u0131"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "voen",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "V\u00d6EN-i",
|
||||||
|
"length": 12
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "tarix",
|
||||||
|
"fieldtype": "Date",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "VHF-tarixi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "seriyasi",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "seriyas\u0131",
|
||||||
|
"length": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "nomresi",
|
||||||
|
"fieldtype": "Int",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u2116-si",
|
||||||
|
"length": 7
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "deyer",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "VHF \u00fczr\u0259 al\u0131nm\u0131\u015f mal\u0131n (i\u015fin,xidm\u0259tin) \u018fDV-siz \u00fcmumi d\u0259y\u0259ri"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "edv",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "\u018fDV m\u0259bl\u0259\u011fi"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"index_web_pages_for_search": 1,
|
||||||
|
"istable": 1,
|
||||||
|
"links": [],
|
||||||
|
"modified": "2024-09-11 16:44:37.675801",
|
||||||
|
"modified_by": "Administrator",
|
||||||
|
"module": "Taxes Az",
|
||||||
|
"name": "EDV hesab-fakturalari haqqinda hesabat table1",
|
||||||
|
"owner": "Administrator",
|
||||||
|
"permissions": [],
|
||||||
|
"sort_field": "modified",
|
||||||
|
"sort_order": "DESC",
|
||||||
|
"states": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class EDVhesabfakturalarihaqqindahesabattable1(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
// Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
// For license information, please see license.txt
|
||||||
|
|
||||||
|
// frappe.ui.form.on("EDV qeyri-rezident", {
|
||||||
|
// refresh(frm) {
|
||||||
|
|
||||||
|
// },
|
||||||
|
// });
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and contributors
|
||||||
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.model.document import Document
|
||||||
|
|
||||||
|
|
||||||
|
class EDVqeyrirezident(Document):
|
||||||
|
pass
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Copyright (c) 2024, Jey Soft and Contributors
|
||||||
|
# See license.txt
|
||||||
|
|
||||||
|
# import frappe
|
||||||
|
from frappe.tests.utils import FrappeTestCase
|
||||||
|
|
||||||
|
|
||||||
|
class TestEDVqeyrirezident(FrappeTestCase):
|
||||||
|
pass
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue