2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 07:08:36 +00:00

fix: add gstType to quick edit fields

This commit is contained in:
18alantom 2021-12-12 12:21:20 +05:30
parent d38889b198
commit 9e13db698e
2 changed files with 47 additions and 0 deletions

46
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,46 @@
name: Build
on:
push:
branches: [ $default-branch ]
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Setup node
uses: actions/setup-node@v2
with:
node-versions: '16.4.0'
- name: Checkout Books
uses: actions/checkout@v2
with:
path: app
- name: Checkout FrappeJS
uses: actions/checkout@v2
with:
repository: 'frappe/frappejs'
path: framework
- name: Setup FrappeJS
run: |
cd framework/frappejs
yarn
yarn link
- name: Setup Books
run: |
cd app/books
yarn
yarn link frappejs
- name: Run build
run: yarn electron:build --linux

View File

@ -25,6 +25,7 @@ export default function getAugmentedParty({ country }) {
}
);
Party.quickEditFields.push('gstin');
Party.quickEditFields.push('gstType');
} else {
Party.fields.splice(3, 0, {
fieldname: 'taxId',