-
Notifications
You must be signed in to change notification settings - Fork 664
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
690dba9
commit 830b745
Showing
21 changed files
with
7,034 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint" | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"files.autoGuessEncoding": true, | ||
"files.autoSaveWhenNoErrors": true | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
var uC = new GlideRecord('u_change_legacy'); | ||
uC.setLimit(1); | ||
uC.query(); | ||
|
||
while(uC.next()) { | ||
uC.number = 'L' + uC.number | ||
uC.autoSysField(false); | ||
uC.setWorkflow(false); | ||
uC.update(); | ||
gs.info(uC.number); | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Customer Instance Customizations | ||
|
||
This directory contains customizations specific to customer instances. These customizations are tailored to meet the unique requirements of individual customers and may include scripts, configurations, and other resources. | ||
|
||
## Structure | ||
|
||
The directory is organized by client as follows: | ||
|
||
- **Weis/** | ||
- **weis-dev**: Contains customizations for the "Weis Dev" customer instance. | ||
- **global/sp_widget**: Contains global scripts and configurations. | ||
- **StorePortal_Active_Requests_Report**: Contains configuration breakdown, scripts and files for Weis custom service portal widget to display ticket status on the store portal (files included in this folder include the html, css,client script and server script fields on the widget form) | ||
- **Scripts/**: Contains custom scripts used for various purposes. | ||
- **Configurations/**: Holds configuration files and settings. | ||
- **Resources/**: Includes additional resources such as documentation, images, etc. | ||
- **PVH/** | ||
- **Scripts/**: Contains custom scripts used for various purposes. | ||
- **Configurations/**: Holds configuration files and settings. | ||
- **Resources/**: Includes additional resources such as documentation, images, etc. | ||
|
||
|
||
## Contributing | ||
|
||
If you wish to contribute to this directory, please follow the guidelines outlined in the [CONTRIBUTING.md](../CONTRIBUTING.md) file. | ||
|
||
## Support | ||
|
||
For any issues or questions regarding these customizations, please contact the support team or refer to the documentation provided in the `Resources` directory. |
4 changes: 4 additions & 0 deletions
4
Customer Instance Customizations/Weis/Configurations/jsconfig.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/** | ||
this should be in root of working directory, created by sn-scriptsync | ||
without this file, autocintellisense does not work | ||
*/ |
Oops, something went wrong.