Skip to content

Commit

Permalink
commit 12_30_24
Browse files Browse the repository at this point in the history
  • Loading branch information
pviglianti committed Dec 31, 2024
1 parent 690dba9 commit 830b745
Show file tree
Hide file tree
Showing 21 changed files with 7,034 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"dbaeumer.vscode-eslint"
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"files.autoGuessEncoding": true,
"files.autoSaveWhenNoErrors": true
}
11 changes: 11 additions & 0 deletions Background Scripts/BACKGROUND_UpdateCHG.txt
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);
}
28 changes: 28 additions & 0 deletions Customer Instance Customizations/README.md
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.
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
*/
Loading

0 comments on commit 830b745

Please sign in to comment.