mirror of
https://github.com/frappe/books.git
synced 2025-01-22 22:58:28 +00:00
fix: add gstType to quick edit fields
This commit is contained in:
parent
d38889b198
commit
9e13db698e
46
.github/workflows/build.yml
vendored
Normal file
46
.github/workflows/build.yml
vendored
Normal 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
|
@ -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',
|
||||
|
Loading…
x
Reference in New Issue
Block a user