-
Notifications
You must be signed in to change notification settings - Fork 371
Bug 633674: [Subcontracting] Subcontracting Type field and enum captions are unclear — rename to Component Supply Method #8073
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
base: main
Are you sure you want to change the base?
Changes from all commits
b49ddb5
84d02fd
79fbdb1
39cdda4
0ab01d0
afacb45
6e30fec
5a08b7d
1b4b0be
a973dc9
5e58233
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| // ------------------------------------------------------------------------------------------------ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. See License.txt in the project root for license information. | ||
| // ------------------------------------------------------------------------------------------------ | ||
| namespace Microsoft.Manufacturing.Subcontracting; | ||
|
|
||
| enum 99001500 "Component Supply Method" | ||
| { | ||
| Extensible = true; | ||
| // No supply method is selected. | ||
| value(0; Empty) | ||
| { | ||
| Caption = ' ', Locked = true; | ||
| } | ||
| // The subcontractor provides the required component materials. | ||
| value(1; "Vendor-Supplied") | ||
| { | ||
| Caption = 'Vendor-Supplied'; | ||
| } | ||
| // Your company owns the components and stores them at the subcontractor location (consignment stock). | ||
| value(2; "Consignment at Vendor") | ||
| { | ||
| Caption = 'Consignment at Vendor'; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see that this jargon is used by people who work with subcontracting process. It's confusing, though, who owns the stock - we or subcontractor.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Isn't it a matter of documentation, tooltip and code comment? |
||
| } | ||
| // Components are sent to the subcontractor through a transfer order. | ||
| value(3; "Transfer to Vendor") | ||
| { | ||
| Caption = 'Transfer to Vendor'; | ||
| } | ||
| } | ||
|
ChethanT marked this conversation as resolved.
|
||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.