Skip to content

Commit 830b745

Browse files
committed
commit 12_30_24
1 parent 690dba9 commit 830b745

File tree

21 files changed

+7034
-0
lines changed

21 files changed

+7034
-0
lines changed

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"dbaeumer.vscode-eslint"
4+
]
5+
}

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"files.autoGuessEncoding": true,
3+
"files.autoSaveWhenNoErrors": true
4+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
var uC = new GlideRecord('u_change_legacy');
2+
uC.setLimit(1);
3+
uC.query();
4+
5+
while(uC.next()) {
6+
uC.number = 'L' + uC.number
7+
uC.autoSysField(false);
8+
uC.setWorkflow(false);
9+
uC.update();
10+
gs.info(uC.number);
11+
}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Customer Instance Customizations
2+
3+
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.
4+
5+
## Structure
6+
7+
The directory is organized by client as follows:
8+
9+
- **Weis/**
10+
- **weis-dev**: Contains customizations for the "Weis Dev" customer instance.
11+
- **global/sp_widget**: Contains global scripts and configurations.
12+
- **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)
13+
- **Scripts/**: Contains custom scripts used for various purposes.
14+
- **Configurations/**: Holds configuration files and settings.
15+
- **Resources/**: Includes additional resources such as documentation, images, etc.
16+
- **PVH/**
17+
- **Scripts/**: Contains custom scripts used for various purposes.
18+
- **Configurations/**: Holds configuration files and settings.
19+
- **Resources/**: Includes additional resources such as documentation, images, etc.
20+
21+
22+
## Contributing
23+
24+
If you wish to contribute to this directory, please follow the guidelines outlined in the [CONTRIBUTING.md](../CONTRIBUTING.md) file.
25+
26+
## Support
27+
28+
For any issues or questions regarding these customizations, please contact the support team or refer to the documentation provided in the `Resources` directory.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
this should be in root of working directory, created by sn-scriptsync
3+
without this file, autocintellisense does not work
4+
*/

0 commit comments

Comments
 (0)