This commit is contained in:
@@ -62,9 +62,6 @@ Coded by importance
|
||||
## CLIENT MISC ITEMS
|
||||
|
||||
|
||||
-1 Default global setting tax codes, default minutes etc?
|
||||
doesn't seem to be implemented, maybe it shoudl not be there??
|
||||
|
||||
-2 hyperlinks in memos sb clickable to open in new tab or window or whatever
|
||||
this supports help links in migrate and also user links like "take a look at workorder 55" with a link to it in the UI
|
||||
recognize urls and make them actionable somehow
|
||||
@@ -859,4 +856,4 @@ BUILD 129 CHANGES OF NOTE
|
||||
- Extensions dialog could be dismissed by clicking outside or pressing escape circumventing Exit button; made Exit button only way to close dialog
|
||||
- Workorder / quote / pm adding missing work order item Travel "distance" field from travel section in form on data tables, customize forms etc
|
||||
- Work order item expense "Summary" field changed to "Description" in English translation to disambiguate it on lists and forms from Item "Summary" and Workorder header "Summary"
|
||||
|
||||
- Work / Quote / PM order global default tax codes implemented in labor, loan, parts, sched users, travels but not outside service as wasn't in v7 and not sure if appropriate to default that one. Also not expenses because not default in v7 and also not always tax anyway.
|
||||
|
||||
@@ -540,7 +540,8 @@ export default {
|
||||
serviceDetails: null,
|
||||
serviceRateQuantity: 0,
|
||||
noChargeQuantity: 0,
|
||||
taxCodeSaleId: null,
|
||||
taxCodeSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxRateSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
isDirty: true,
|
||||
|
||||
@@ -493,7 +493,7 @@ export default {
|
||||
outDate: null,
|
||||
dueDate: null,
|
||||
returnDate: null,
|
||||
taxCodeId: null,
|
||||
taxCodeId: window.$gz.store.state.globalSettings.defaultTaxPartSaleId,
|
||||
loanUnitId: 0, //zero to break rule on new
|
||||
quantity: 1,
|
||||
rate: 1,
|
||||
|
||||
@@ -614,7 +614,8 @@ export default {
|
||||
partId: z.partId,
|
||||
partWarehouseId: this.selectedPartWarehouse,
|
||||
quantity: z.quantity,
|
||||
taxPartSaleId: null,
|
||||
taxPartSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxPartSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
cost: 0,
|
||||
@@ -723,7 +724,8 @@ export default {
|
||||
partId: 0, //deliberately zero to break rule on new
|
||||
partWarehouseId: 1, //important always default to "default" warehouse id 1 as even with inventory turned off it's required
|
||||
quantity: 1,
|
||||
taxPartSaleId: null,
|
||||
taxPartSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxPartSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
cost: 0,
|
||||
|
||||
@@ -383,7 +383,8 @@ export default {
|
||||
serviceDetails: null,
|
||||
serviceRateQuantity: s.estimatedQuantity,
|
||||
noChargeQuantity: 0,
|
||||
taxCodeSaleId: null,
|
||||
taxCodeSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxRateSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
isDirty: true,
|
||||
|
||||
@@ -553,7 +553,8 @@ export default {
|
||||
: null,
|
||||
travelStartDate: null,
|
||||
travelStopDate: null,
|
||||
travelRateId: null,
|
||||
travelRateId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxRateSaleId,
|
||||
travelDetails: null,
|
||||
travelRateQuantity: 0,
|
||||
noChargeQuantity: 0,
|
||||
|
||||
@@ -540,7 +540,8 @@ export default {
|
||||
serviceDetails: null,
|
||||
serviceRateQuantity: 0,
|
||||
noChargeQuantity: 0,
|
||||
taxCodeSaleId: null,
|
||||
taxCodeSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxRateSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
isDirty: true,
|
||||
|
||||
@@ -493,7 +493,7 @@ export default {
|
||||
outDate: null,
|
||||
dueDate: null,
|
||||
returnDate: null,
|
||||
taxCodeId: null,
|
||||
taxCodeId: window.$gz.store.state.globalSettings.defaultTaxPartSaleId,
|
||||
loanUnitId: 0, //zero to break rule on new
|
||||
quantity: 1,
|
||||
rate: 1,
|
||||
|
||||
@@ -614,7 +614,8 @@ export default {
|
||||
partId: z.partId,
|
||||
partWarehouseId: this.selectedPartWarehouse,
|
||||
quantity: z.quantity,
|
||||
taxPartSaleId: null,
|
||||
taxPartSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxPartSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
cost: 0,
|
||||
@@ -723,7 +724,8 @@ export default {
|
||||
partId: 0, //deliberately zero to break rule on new
|
||||
partWarehouseId: 1, //important always default to "default" warehouse id 1 as even with inventory turned off it's required
|
||||
quantity: 1,
|
||||
taxPartSaleId: null,
|
||||
taxPartSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxPartSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
cost: 0,
|
||||
|
||||
@@ -383,7 +383,8 @@ export default {
|
||||
serviceDetails: null,
|
||||
serviceRateQuantity: s.estimatedQuantity,
|
||||
noChargeQuantity: 0,
|
||||
taxCodeSaleId: null,
|
||||
taxCodeSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxRateSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
isDirty: true,
|
||||
|
||||
@@ -553,7 +553,8 @@ export default {
|
||||
: null,
|
||||
travelStartDate: null,
|
||||
travelStopDate: null,
|
||||
travelRateId: null,
|
||||
travelRateId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxRateSaleId,
|
||||
travelDetails: null,
|
||||
travelRateQuantity: 0,
|
||||
noChargeQuantity: 0,
|
||||
|
||||
@@ -540,7 +540,8 @@ export default {
|
||||
serviceDetails: null,
|
||||
serviceRateQuantity: 0,
|
||||
noChargeQuantity: 0,
|
||||
taxCodeSaleId: null,
|
||||
taxCodeSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxRateSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
isDirty: true,
|
||||
|
||||
@@ -497,7 +497,7 @@ export default {
|
||||
outDate: null,
|
||||
dueDate: null,
|
||||
returnDate: null,
|
||||
taxCodeId: null,
|
||||
taxCodeId: window.$gz.store.state.globalSettings.defaultTaxPartSaleId,
|
||||
loanUnitId: 0, //zero to break rule on new
|
||||
quantity: 1,
|
||||
rate: 1,
|
||||
|
||||
@@ -688,7 +688,7 @@ export default {
|
||||
sentDate: window.$gz.locale.nowUTC8601String(),
|
||||
etaDate: null,
|
||||
returnDate: null,
|
||||
taxCodeId: null,
|
||||
taxCodeId: null, //Is it labor or parts tax code? wasn't in v7 leaving empty for now
|
||||
isDirty: true,
|
||||
workOrderItemId: this.value.items[this.activeWoItemIndex].id,
|
||||
uid: Date.now(),
|
||||
|
||||
@@ -614,7 +614,8 @@ export default {
|
||||
partId: z.partId,
|
||||
partWarehouseId: this.selectedPartWarehouse,
|
||||
quantity: z.quantity,
|
||||
taxPartSaleId: null,
|
||||
taxPartSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxPartSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
cost: 0,
|
||||
@@ -723,7 +724,8 @@ export default {
|
||||
partId: 0, //deliberately zero to break rule on new
|
||||
partWarehouseId: 1, //important always default to "default" warehouse id 1 as even with inventory turned off it's required
|
||||
quantity: 1,
|
||||
taxPartSaleId: null,
|
||||
taxPartSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxPartSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
cost: 0,
|
||||
|
||||
@@ -383,7 +383,8 @@ export default {
|
||||
serviceDetails: null,
|
||||
serviceRateQuantity: s.estimatedQuantity,
|
||||
noChargeQuantity: 0,
|
||||
taxCodeSaleId: null,
|
||||
taxCodeSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxRateSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
isDirty: true,
|
||||
|
||||
@@ -559,7 +559,8 @@ export default {
|
||||
travelDetails: null,
|
||||
travelRateQuantity: 0,
|
||||
noChargeQuantity: 0,
|
||||
taxCodeSaleId: null,
|
||||
taxCodeSaleId:
|
||||
window.$gz.store.state.globalSettings.defaultTaxRateSaleId,
|
||||
price: 0,
|
||||
priceOverride: null,
|
||||
isDirty: true,
|
||||
|
||||
Reference in New Issue
Block a user