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
[Collection:LedMasterColl] | |
Type:Ledger | |
Fetch:Name,Parent,Address,LedStateName,CountryofResidence,PartyGSTIN | |
[Collection:LedMastersPost] | |
Data Source:HTTP JSON:"http://127.0.0.1:5000/Ledgers/Add" | |
RemoteRequest:LedMasters:UTF8 | |
[#Menu:GatewayOfTally] |
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 tkinter import Tk, Label, Entry, font, Button, messagebox | |
from requests import request | |
from xml.etree import ElementTree as Et | |
class MainWindow: | |
def __init__(self, parent): | |
self.font_14 = font.Font(family='Roboto', size=14) | |
from_dt = Label(parent, text="From date:", font=self.font_14, fg="green") | |
from_dt.grid(row=1, column=1, padx=10, pady=10) |
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
<ENVELOPE> | |
<HEADER> | |
<TALLYREQUEST>Import Data</TALLYREQUEST> | |
</HEADER> | |
<BODY> | |
<IMPORTDATA> | |
<REQUESTDESC> | |
<REPORTNAME>All Masters</REPORTNAME> | |
</REQUESTDESC> | |
<REQUESTDATA> |
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 requests | |
from xml.etree import ElementTree as Et | |
from tkinter import Tk, Entry, Button, font | |
class MainWindow: | |
def __init__(self, main): | |
self.font_14 = font.Font(family='Roboto', size=14) | |
# button |
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 tkinter import Button, Label, Entry, font, Tk, messagebox | |
import requests | |
class MainWindow: | |
def __init__(self, main): | |
font_14 = font.Font(family='Sans serif', size=14) | |
font_18 = font.Font(family='Sans serif', size=18) | |
# item name |
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 tkinter import * | |
import tkinter.font as font | |
from tkinter import ttk, messagebox | |
import requests | |
class MainWindow: | |
def __init__(self, main): | |
font_18 = font.Font(family='verdana', size=18) |
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 required packages | |
import requests | |
import xml.etree.ElementTree as Et | |
import tkinter.font as font | |
from tkinter import * | |
#MainWindow Class |
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
<ENVELOPE> | |
<HEADER> | |
<VERSION>1</VERSION> | |
<TALLYREQUEST>EXPORT</TALLYREQUEST> | |
<TYPE>COLLECTION</TYPE> | |
<ID>List of Ledgers</ID> | |
</HEADER> | |
<BODY> | |
<DESC> | |
<STATICVARIABLES> |
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
<?php | |
// data class for stockitem | |
class StockModel{ | |
public $itemName; | |
public $itemUnit; | |
public $itemGrate; |
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
<?php | |
class LedgerModel{ | |
public $ledName; | |
public $ledGroup; | |
public $ledState; | |
public $ledAddress; | |
public $ledGstin; | |
public $ledCountry; |