Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SN-Scripts-2 #1625

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .codegpt/head
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
051955d7-527e-4878-b75c-1540e29d6069
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
Loading