This file contains hidden or 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
function closeSalesOrder(salesOrderInternalId) { | |
try { | |
var order = record.load({ | |
id: salesOrderInternalId, | |
type: record.Type.SALES_ORDER, | |
isDynamic: true | |
}); | |
var itemIndex = 0; |
This file contains hidden or 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
/** | |
* @NApiVersion 2.x | |
* @NScriptType Suitelet | |
* @NModuleScope SameAccount | |
*/ | |
define(['N/file', 'N/record', 'N/redirect', 'N/search', 'N/ui/serverWidget', 'N/runtime', 'N/email'], | |
/** | |
* @param {file} file | |
* @param {record} record | |
* @param {redirect} redirect |
This file contains hidden or 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
using Google.Apis.Auth.OAuth2; | |
using Google.Apis.Drive.v3; | |
using Google.Apis.Services; | |
using Google.Apis.Util.Store; | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading; |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8" ?> | |
<appSettings> | |
<add key="Scope" value="read_products"/> | |
<add key="ShopifyApiVersion" value="2020-10"/> | |
<add key="Secret" value="secret_key"/> | |
<add key="AppId" value="api_key"/> | |
</appSettings> |
This file contains hidden or 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
using System.Text; | |
using EdiEngine; | |
using EdiEngine.Runtime; | |
using Newtonsoft.Json; | |
namespace ParseEDI; | |
class Program | |
{ | |
static async Task Main(string[] args) | |
{ |
OlderNewer