rc.1 release
This commit is contained in:
@@ -35,7 +35,7 @@ namespace AyaNova.PlugIn.V8
|
||||
|
||||
public string PluginVersion
|
||||
{
|
||||
get { return "7.6.1-beta.2"; }
|
||||
get { return "7.6.1-alpha.1"; }
|
||||
}
|
||||
|
||||
public string About
|
||||
@@ -1647,9 +1647,7 @@ namespace AyaNova.PlugIn.V8
|
||||
d.active = c.Active;
|
||||
d.notes = c.Notes;
|
||||
d.serial = c.Serial;
|
||||
//MIGRATE_OUTSTANDING
|
||||
//fixup after workorders
|
||||
// d.workorderItemLoanId=
|
||||
//Note: workorder id it's loaned out on if any will be set when workorders are exportedlater
|
||||
d.rateHour = c.RateHour;
|
||||
d.rateHalfDay = c.RateHalfDay;
|
||||
d.rateDay = c.RateDay;
|
||||
@@ -3570,7 +3568,7 @@ namespace AyaNova.PlugIn.V8
|
||||
{
|
||||
dwip.quantity = 0;
|
||||
dwip.suggestedQuantity = wip.Quantity;
|
||||
}
|
||||
}
|
||||
var tryPartId = await Getv7v8IdMapNullOk(wip.PartID, RootObjectTypes.Part);
|
||||
if (tryPartId == null)
|
||||
{
|
||||
@@ -4450,7 +4448,7 @@ namespace AyaNova.PlugIn.V8
|
||||
dwip.pmId = RavenId;
|
||||
dwip.pmItemId = ravenwoitemid;
|
||||
dwip.quantity = wip.Quantity;
|
||||
|
||||
|
||||
|
||||
var tryPartId = await Getv7v8IdMapNullOk(wip.PartID, RootObjectTypes.Part);
|
||||
if (tryPartId == null)
|
||||
@@ -5861,7 +5859,7 @@ namespace AyaNova.PlugIn.V8
|
||||
var af = AyaFile.GetItem(i.LT_O_AyaFile.Value);
|
||||
if (af == null) continue;
|
||||
|
||||
|
||||
|
||||
progress.SubOp("Wikifile: \"" + af.Name + "\" " + AyaBizUtils.FileSizeDisplay((decimal)af.FileSize));
|
||||
if (IsDuplicatev7v8IdMapItem(i.LT_O_AyaFile.Value, i.LT_O_AyaFile.Display, progress)) continue;
|
||||
|
||||
@@ -5908,10 +5906,10 @@ namespace AyaNova.PlugIn.V8
|
||||
formDataContent.Add(new StringContent(v8Id.ToString()), name: "AttachToObjectId");
|
||||
|
||||
//user id override
|
||||
long? attachedByUserId=await Getv7v8IdMapNullOk(i.LT_Common_Label_Creator.Value, RootObjectTypes.User);
|
||||
long? attachedByUserId = await Getv7v8IdMapNullOk(i.LT_Common_Label_Creator.Value, RootObjectTypes.User);
|
||||
if (attachedByUserId == null) attachedByUserId = 1;//use superuser
|
||||
formDataContent.Add(new StringContent(attachedByUserId.ToString()), name: "OverrideUserId");
|
||||
|
||||
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(ImportTag))
|
||||
formDataContent.Add(new StringContent(ImportTag), name: "Notes");
|
||||
|
||||
Reference in New Issue
Block a user